<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Planetaki Planet balkhis</title>
  <link href="http://www.planetaki.com/balkhis" rel="alternate"/>
  <updated>2008-09-07T03:41:21+00:00</updated>
  <id>planetaki.com:2185</id>
  <author>
    <name>Planetaki - Planet balkhis</name>
    <email>hello@planetaki.com</email>
  </author>
  <entry>
    <title>How to: Related Posts with Thumbnails in WordPress without Plugins</title>
    <updated>2010-02-08T21:07:10+00:00</updated>
    <published>2010-02-06T02:21:48+00:00</published>
    <id>planetaki.com:2185:post:62559317</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/4ud23TpOjEk/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/62559317" rel="full"/>
    <summary type="html">&lt;p&gt;Related posts can be easily displayed with plugins, but did you ever wonder how you could display related posts with a Thumbnail without using a Plugin? In this article, we will share two different algorithm which you can use to generate related posts with thumbnails and avoid using any plugin.&lt;/p&gt;&lt;p&gt;Note: We will utilize the built-in &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/" target="_blank"&gt;WordPress Post Thumbnail Function&lt;/a&gt;. So it is best if you implement this.&lt;/p&gt;&lt;p&gt;WordPress has this amazing taxonomy known as &#8220;Post Tags&#8221; which you can use. You can tag each of your posts with multiple keywords. This algorithm would find other posts with any one of the tag that the current post has and will list them.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Related posts can be easily displayed with plugins, but did you ever wonder how you could display related posts with a Thumbnail without using a Plugin? In this article, we will share two different algorithm which you can use to generate related posts with thumbnails and avoid using any plugin.&lt;/p&gt;
&lt;p&gt;Note: We will utilize the built-in &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/" target="_blank"&gt;WordPress Post Thumbnail Function&lt;/a&gt;. So it is best if you implement this.&lt;/p&gt;
&lt;h4&gt;Related Posts by Tags&lt;/h4&gt;
&lt;p&gt;WordPress has this amazing taxonomy known as &amp;#8220;Post Tags&amp;#8221; which you can use. You can tag each of your posts with multiple keywords. This algorithm would find other posts with any one of the tag that the current post has and will list them.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt; &amp;lt;?php $orig_post = $post;&lt;br /&gt;
global $post;&lt;br /&gt;
$tags = wp_get_post_tags($post-&amp;gt;ID);&lt;br /&gt;
if ($tags) {&lt;br /&gt;
	$tag_ids = array();&lt;br /&gt;
	foreach($tags as $individual_tag) $tag_ids[] = $individual_tag-&amp;gt;term_id;&lt;br /&gt;
	$args=array(&lt;br /&gt;
		'tag__in' =&amp;gt; $tag_ids,&lt;br /&gt;
		'post__not_in' =&amp;gt; array($post-&amp;gt;ID),&lt;br /&gt;
		'posts_per_page'=&amp;gt;5, // Number of related posts that will be shown.&lt;br /&gt;
		'caller_get_posts'=&amp;gt;1&lt;br /&gt;
	);&lt;br /&gt;
$my_query = new wp_query( $args );&lt;br /&gt;
if( $my_query-&amp;gt;have_posts() ) {&lt;/p&gt;
&lt;p&gt;echo '&amp;lt;div id=&amp;quot;relatedposts&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;Related Posts&amp;lt;/h3&amp;gt;&amp;lt;ul&amp;gt;';&lt;/p&gt;
&lt;p&gt;while( $my_query-&amp;gt;have_posts() ) {&lt;br /&gt;
$my_query-&amp;gt;the_post(); ?&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;li&amp;gt;&amp;lt;div class=&amp;quot;relatedthumb&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;? the_permalink()?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_post_thumbnail(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
                &amp;lt;div class=&amp;quot;relatedcontent&amp;quot;&amp;gt;&lt;br /&gt;
                &amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;? the_permalink()?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
                &amp;lt;?php the_time('M j, Y') ?&amp;gt;&lt;br /&gt;
                &amp;lt;/div&amp;gt;&lt;br /&gt;
                &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;? }&lt;br /&gt;
echo '&amp;lt;/ul&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
$post = $orig_post;&lt;br /&gt;
wp_reset_query();  ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The above code is looking at the current post ID and all tags which are associated with it and it uses the wp_query function to look for all other posts that matches any original tag and display them. You can style the post anyway you want them. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advantage:&lt;/strong&gt; Most codes on the web cannot be used within the main post loop. Because the related posts are placed right after the main post and above the comments, this code is very helpful. We are saving the current post ID of the main loop and then recalling it at the end of our related posts code. Usually when you don&amp;#8217;t do it this way, the two post ID codes gets mixed up and then the comments start acting weird which can break the comments, other plugins related to comments such as numbering system etc. So this code is good and it works.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Usage:&lt;/strong&gt; Place this code anywhere you like in your &lt;em&gt;single.php&lt;/em&gt; and it will work. But most of the time it is placed right above the comments in the main loop.&lt;/p&gt;
&lt;h4&gt;Related Posts by Category&lt;/h4&gt;
&lt;p&gt;This algorithm would find other posts within the same category as the current post, and it will list them as related posts. The advantage of this technique is that you will never have a blank spot for your related posts section.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php $orig_post = $post;&lt;br /&gt;
	global $post;&lt;br /&gt;
$categories = get_the_category($post-&amp;gt;ID);&lt;br /&gt;
if ($categories) {&lt;br /&gt;
	$category_ids = array();&lt;br /&gt;
	foreach($categories as $individual_category) $category_ids[] = $individual_category-&amp;gt;term_id;&lt;/p&gt;
&lt;p&gt;	$args=array(&lt;br /&gt;
		'category__in' =&amp;gt; $category_ids,&lt;br /&gt;
		'post__not_in' =&amp;gt; array($post-&amp;gt;ID),&lt;br /&gt;
		'posts_per_page'=&amp;gt; 2, // Number of related posts that will be shown.&lt;br /&gt;
		'caller_get_posts'=&amp;gt;1&lt;br /&gt;
	);&lt;/p&gt;
&lt;p&gt;$my_query = new wp_query( $args );&lt;br /&gt;
if( $my_query-&amp;gt;have_posts() ) {&lt;br /&gt;
echo '&amp;lt;div id=&amp;quot;related_posts&amp;quot;&amp;gt;&amp;lt;h3&amp;gt;Related Posts&amp;lt;/h3&amp;gt;&amp;lt;ul&amp;gt;';&lt;br /&gt;
while( $my_query-&amp;gt;have_posts() ) {&lt;br /&gt;
$my_query-&amp;gt;the_post();?&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;li&amp;gt;&amp;lt;div class=&amp;quot;relatedthumb&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;? the_permalink()?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_post_thumbnail(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;relatedcontent&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;? the_permalink()?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;?php the_time('M j, Y') ?&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;?&lt;br /&gt;
}&lt;br /&gt;
echo '&amp;lt;/ul&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
 $post = $orig_post;&lt;br /&gt;
wp_reset_query();  ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This technique utilizes the same functions as the one above except we are just using the different criteria.&lt;/p&gt;
&lt;p&gt;If you are creating a new project, or working on a client&amp;#8217;s site, this could be very helpful.&lt;/p&gt;
&lt;h4&gt;Example&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/relatedposts.gif" onload="resizeImage( this )" alt="Add Related Posts with a Thumbnail in WordPress without using Plugins" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Additional Sources:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.online-blogger.net/2009/12/14/how-to-show-related-posts-in-wordpress-without-a-plugin/" rel="nofollow" target="_blank"&gt;Creating a Mini Plugin to Show Related Posts via Functions.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://codex.wordpress.org/Template_Tags/query_posts" rel="nofollow" target="_blank"&gt;Query Function and Template Tags for WordPress&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-related-posts-with-a-thumbnail-without-using-plugins/" target="_blank"&gt;How to: Related Posts with Thumbnails in WordPress without Plugins&lt;/a&gt; is a post from: &lt;a href="http://www.wpbeginner.com" rel="friend" target="_blank"&gt;WPBeginner&lt;/a&gt; which is not allowed to be copied on other sites.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-related-posts-in-wordpress/" title="Permanent Link: How to Display Related Posts in WordPress" rel="bookmark" target="_blank"&gt;How to Display Related Posts in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-random-posts-in-wordpress/" title="Permanent Link: How to Display Random Posts in WordPress" rel="bookmark" target="_blank"&gt;How to Display Random Posts in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-recent-posts-in-wordpress/" title="Permanent Link: How to Display Recent Posts in WordPress" rel="bookmark" target="_blank"&gt;How to Display Recent Posts in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=4ud23TpOjEk:HAyeOuhRP0U:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=4ud23TpOjEk:HAyeOuhRP0U:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4ud23TpOjEk:HAyeOuhRP0U:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/4ud23TpOjEk" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1231</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/4ud23TpOjEk/" rel="alternate"/>
      <title>How to: Related Posts with Thumbnails in WordPress without Plugins</title>
      <updated>2010-02-08T21:07:10+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Change the Category Base Prefix in WordPress</title>
    <updated>2010-02-02T21:11:06+00:00</updated>
    <published>2010-02-02T15:14:10+00:00</published>
    <id>planetaki.com:2185:post:61669592</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/XOqYeMGteSw/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/61669592" rel="full"/>
    <summary type="html">&lt;p&gt;We got several requests asking the same question: How to modify the category base prefix in WordPress? Well there is a very easy way to change the category base prefix, but there is no real solution to completely remove this prefix. In this article we will show you how to change the category base prefix in WordPress, and we will also touch base on a possible way that will allow you to remove the category prefix entirely.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;What is a Category Base Prefix?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;In your URL structure, you will see something like this http://yoursite.com/&lt;strong&gt;category&lt;/strong&gt;/wordpress&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;We got several requests asking the same question: How to modify the category base prefix in WordPress? Well there is a very easy way to change the category base prefix, but there is no real solution to completely remove this prefix. In this article we will show you how to change the category base prefix in WordPress, and we will also touch base on a possible way that will allow you to remove the category prefix entirely.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is a Category Base Prefix?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In your URL structure, you will see something like this http://yoursite.com/&lt;strong&gt;category&lt;/strong&gt;/wordpress&lt;/p&gt;
&lt;p&gt;That word category is the base prefix that all WordPress blogs will have as long as they are not using the default permalink structure.&lt;/p&gt;
&lt;h4&gt;How to Change / Modify the Category Base Prefix?&lt;/h4&gt;
&lt;p&gt;It is really easy to change that prefix to anything you like. For examples then your URL would look like yourdomain.com/articles/wordpress&lt;/p&gt;
&lt;p&gt;First you would need to go in your WP-Admin Panel and go to Settings &amp;raquo; Permalinks&lt;/p&gt;
&lt;p&gt;There you would see an Optional box which allows you to change the category base prefix and the tag base prefix. (Example Below)&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/categorybaseprefix.gif" onload="resizeImage( this )" alt="How to Change Category Base Prefix in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Simply add the text that you like, and you are done. This way is guaranteed to work because it is a hard-coded option within WordPress.&lt;/p&gt;
&lt;h4&gt;How to Remove Category Base Prefix in WordPress&lt;/h4&gt;
&lt;p&gt;There is no bug free way to get this done. For those who want no problems with their site, we recommend that you do not even try this because it can lead to problems. There is a plugin that allows you to completely get rid of the prefix, so it would be yourdomain.com/wordpress rather than yourdomain.com/category/wordpress. This plugin is called &lt;a href="http://wordpress.org/extend/plugins/top-level-cats/" rel="nofollow" target="_blank"&gt;Top Level Directories&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Known Issues:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This plugin will not work if you have a permalink structure like %postname or %category%/%postname%   and there is currently no workaround. &lt;/p&gt;
&lt;p&gt;If you add a suffix to your permalink structure (such as .html) you can fix this issue. For example, try %category%/%postname%.html  &amp;#8211; This is not ideal, but there is no good solution for this issue.&lt;/p&gt;
&lt;p&gt;For now we suggest that you stick with a modified base prefix if necessary. All we can do is hope that WordPress adds this feature in the future versions.&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=XOqYeMGteSw:NDyqsXnubtA:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=XOqYeMGteSw:NDyqsXnubtA:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=XOqYeMGteSw:NDyqsXnubtA:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/XOqYeMGteSw" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1224</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/XOqYeMGteSw/" rel="alternate"/>
      <title>How to Change the Category Base Prefix in WordPress</title>
      <updated>2010-02-02T21:11:06+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>The Best Way to Get Retweets, Just Ask!</title>
    <updated>2010-02-02T04:45:39+00:00</updated>
    <published>2010-02-02T01:20:21+00:00</published>
    <id>planetaki.com:2185:post:61550476</id>
    <link href="http://feedproxy.google.com/~r/Balkhis/~3/EaDaAA-tX3o/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/61550476" rel="full"/>
    <summary type="html">&lt;p&gt;Ask and you shall receive! Does that phrase sound familiar. Yup twitter works just like that. I have seen many different retweet guides on the web, but this is the simplest and by far the most effective technique in my books. The best way to get retweets is by simply asking.&lt;/p&gt;&lt;p&gt;Here let me give you an example:&lt;/p&gt;&lt;p&gt;Take this article that we wrote at WPBeginner &#8211; &lt;a href="http://www.wpbeginner.com/wp-tutorials/55-most-wanted-wordpress-tips-tricks-and-hacks/" target="_blank"&gt;55+ Most Wanted WordPress Tips, Tricks, and Hacks&lt;/a&gt; (has 944 tweets)&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Ask and you shall receive! Does that phrase sound familiar. Yup twitter works just like that. I have seen many different retweet guides on the web, but this is the simplest and by far the most effective technique in my books. The best way to get retweets is by simply asking.&lt;/p&gt;
&lt;p&gt;Here let me give you an example:&lt;/p&gt;
&lt;p&gt;Take this article that we wrote at WPBeginner &amp;#8211; &lt;a href="http://www.wpbeginner.com/wp-tutorials/55-most-wanted-wordpress-tips-tricks-and-hacks/" target="_blank"&gt;55+ Most Wanted WordPress Tips, Tricks, and Hacks&lt;/a&gt; (has 944 tweets)&lt;/p&gt;
&lt;p&gt;This was the example text I wrote 6 days ago when I first tweeted it:&lt;/p&gt;
&lt;p&gt;55+ Most Wanted #WordPress Tips, Tricks, and Hacks &amp;#8211; http://bit.ly/7EfP1W (Pls RT)&lt;/p&gt;
&lt;p&gt;You see the magic word at the end. Pls RT, got the article tweeted many times. Now because it was a quality article, it took off and people started retweeting it left and right. I cannot emphasize enough how important the content really is.&lt;/p&gt;
&lt;p&gt;But I did not just stop there. I have some very close friends on twitter which everyone should. There is no way that you can follow 3000 people. I have a group of 40 friends that I really keep track of and chat with. I sent out messages to each of them asking them to retweet this. It got retweeted more times. &lt;/p&gt;
&lt;p&gt;Again, all I am doing is just ASKING. It really depends on how you ask because some of these top guys get hundreds of requests daily, so you have to be smart. Don&amp;#8217;t make your article spammy, always ask nicely, and acknowledge them in your tweets. You absolutely CANNOT go ask someone you do not have a previous relationship with. If you do you will just come off as a spammer.&lt;/p&gt;
&lt;p&gt;Use twitter the right way and you will have plenty of friends that actually know you, and you actually know them.&lt;/p&gt;
&lt;p&gt;But all to all, it is a really simple formula.&lt;/p&gt;
&lt;p&gt;Quality Content + Ask = Tons of Retweets&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=EaDaAA-tX3o:ynKCaeVPI9E:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=EaDaAA-tX3o:ynKCaeVPI9E:D7DqB2pKExk" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=EaDaAA-tX3o:ynKCaeVPI9E:D7DqB2pKExk" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=EaDaAA-tX3o:ynKCaeVPI9E:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=EaDaAA-tX3o:ynKCaeVPI9E:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=EaDaAA-tX3o:ynKCaeVPI9E:dnMXMwOfBR0" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=dnMXMwOfBR0" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=EaDaAA-tX3o:ynKCaeVPI9E:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=EaDaAA-tX3o:ynKCaeVPI9E:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Balkhis/~4/EaDaAA-tX3o" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.balkhis.com/?p=1726</id>
      <link href="http://feedproxy.google.com/~r/Balkhis/~3/EaDaAA-tX3o/" rel="alternate"/>
      <title>The Best Way to Get Retweets, Just Ask!</title>
      <updated>2010-02-02T04:45:39+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>My Presentation at WordCamp Atlanta on WordPress Security</title>
    <updated>2010-01-28T14:36:39+00:00</updated>
    <published>2010-01-28T14:27:00+00:00</published>
    <id>planetaki.com:2185:post:60892264</id>
    <link href="http://feedproxy.google.com/~r/Balkhis/~3/qqj7grpCrok/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60892264" rel="full"/>
    <summary type="html">&lt;p&gt;So if you haven&#8217;t notice, I was not blogging at Balkhis for a while. Yeah, I keep saying that I will blog and I barely do it anymore here. The sole reason for that is lack of balance. I am still trying to find balance between school, clients, social media profiles, and sites. I didn&#8217;t even get a chance to update you guys about the presentation that I gave earlier this month at WordCamp Atlanta 2010. &lt;/p&gt;&lt;p&gt;WordCamps are just events for WordPress users. I have been attending a lot of WordCamps lately. Since Novemeber, I have been to three WordCamps and I spoke at Atlanta. I will be attending WordCamp Miami and I am a confirmed speaker there as well.&lt;/p&gt;&lt;p&gt;So you guys are probably wondering how was my speaking experience. First thing I will say is that it was pretty cool. I consulted with many clients, talked with some known names, but I have never really stood in front a lot of people at a conference and gave a presentation. I was giving a presentation on WordCamp Security and as soon as I looked up, I saw one of the lead developers of WordPress sitting in front of me. Yup, it was &lt;a href="http://markjaquith.com/" target="_blank"&gt;Mark Jacquith&lt;/a&gt;.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;So if you haven&amp;#8217;t notice, I was not blogging at Balkhis for a while. Yeah, I keep saying that I will blog and I barely do it anymore here. The sole reason for that is lack of balance. I am still trying to find balance between school, clients, social media profiles, and sites. I didn&amp;#8217;t even get a chance to update you guys about the presentation that I gave earlier this month at WordCamp Atlanta 2010. &lt;/p&gt;
&lt;p&gt;WordCamps are just events for WordPress users. I have been attending a lot of WordCamps lately. Since Novemeber, I have been to three WordCamps and I spoke at Atlanta. I will be attending WordCamp Miami and I am a confirmed speaker there as well.&lt;/p&gt;
&lt;p&gt;So you guys are probably wondering how was my speaking experience. First thing I will say is that it was pretty cool. I consulted with many clients, talked with some known names, but I have never really stood in front a lot of people at a conference and gave a presentation. I was giving a presentation on WordCamp Security and as soon as I looked up, I saw one of the lead developers of WordPress sitting in front of me. Yup, it was &lt;a href="http://markjaquith.com/" target="_blank"&gt;Mark Jacquith&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Have you ever had a feeling when you are trying to explain something to somebody and all of the sudden you see the person who actually built that something. Well its not very comfortable when you see someone in front of you who probably knows a lot more about this script than you do because he is the lead developer. Anyways, I have talked with Mark on my past events so it was not that big of a deal. I stood there and gave a pretty decent presentation.&lt;/p&gt;
&lt;p&gt;You can check out the presentation slides below:&lt;/p&gt;
&lt;div id="__ss_2871141"&gt;&lt;a href="http://www.slideshare.net/wpbeginner/protecting-wordpress-from-the-inside-out" title="Protecting WordPress from the Inside Out" target="_blank"&gt;Protecting WordPress from the Inside Out&lt;/a&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=presentation-100109095326-phpapp02&amp;stripped_title=protecting-wordpress-from-the-inside-out" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;embed type="application/x-shockwave-flash" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=presentation-100109095326-phpapp02&amp;stripped_title=protecting-wordpress-from-the-inside-out" height="355" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;div&gt;View more &lt;a href="http://www.slideshare.net/" target="_blank"&gt;presentations&lt;/a&gt; from &lt;a href="http://www.slideshare.net/wpbeginner" target="_blank"&gt;Syed Balkhi&lt;/a&gt;.&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Now till that day there was something I was doing wrong. Removing WordPress version number. I knew many security tricks but I didn&amp;#8217;t know that WordPress also sends out the version number in the feeds. So now if you remove it in the header its ok, but if someone really wants to get it they can just go to the feeds and get it.&lt;/p&gt;
&lt;p&gt;After talking with Mark, I wrote an article on WPBeginner &lt;a href="http://www.wpbeginner.com/wp-tutorials/the-right-way-to-remove-wordpress-version-number/" target="_blank"&gt;how to correctly remove WordPress Version Number&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I hope you guys like the presentation. It was scaled for a beginner session, but there are a lot of stuff that you can use, so definitely go through this presentation.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=qqj7grpCrok:pRHUORDvyBQ:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=qqj7grpCrok:pRHUORDvyBQ:D7DqB2pKExk" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=qqj7grpCrok:pRHUORDvyBQ:D7DqB2pKExk" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=qqj7grpCrok:pRHUORDvyBQ:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=qqj7grpCrok:pRHUORDvyBQ:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=qqj7grpCrok:pRHUORDvyBQ:dnMXMwOfBR0" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=dnMXMwOfBR0" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=qqj7grpCrok:pRHUORDvyBQ:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=qqj7grpCrok:pRHUORDvyBQ:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Balkhis/~4/qqj7grpCrok" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.balkhis.com/?p=1722</id>
      <link href="http://feedproxy.google.com/~r/Balkhis/~3/qqj7grpCrok/" rel="alternate"/>
      <title>My Presentation at WordCamp Atlanta on WordPress Security</title>
      <updated>2010-01-28T14:36:39+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Use CSS Sprites to Beautify your WordPress Post Dates</title>
    <updated>2010-01-28T12:18:52+00:00</updated>
    <published>2010-01-28T11:34:25+00:00</published>
    <id>planetaki.com:2185:post:60869999</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/4wx7jUdGvGE/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60869999" rel="full"/>
    <summary type="html">&lt;p&gt;Ever wonder how to super style your blog&#8217;s post date?&#160; I am going to show you how to do this using  CSS sprites in about 18 minutes.&lt;/p&gt;&lt;p&gt;Editorial Note: This post is geared toward theme designers. Prior knowledge of CSS and WordPress is recommended.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;What you will need:&lt;/strong&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Ever wonder how to super style your blog&#8217;s post date?&#160; I am going to show you how to do this using  CSS sprites in about 18 minutes.&lt;/p&gt;
&lt;p&gt;Editorial Note: This post is geared toward theme designers. Prior knowledge of CSS and WordPress is recommended.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What you will need:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A graphics program (I use Adobe Photoshop CS4)&lt;/li&gt;
&lt;li&gt;A simple text editor&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;What you will accomplish in this tutorial:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The dates on your blog&#8217;s posts will be super styled using CSS Sprites&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Let&#8217;s get started&#8230; &lt;/p&gt;
&lt;h4&gt;Step #1&lt;/h4&gt;
&lt;p&gt;Fire up  your graphics program.&#160; You can download  a &lt;a href="http://www.wpbeginner.com/guestposts/todd-santoro-css-sprites/date_img.psd" target="_blank"&gt;PSD&lt;/a&gt; or &lt;a href="http://www.wpbeginner.com/guestposts/todd-santoro-css-sprites/date_img.png" target="_blank"&gt;PNG&lt;/a&gt; template to help with the layout of all of the dates in our  Sprite.&lt;/p&gt;
&lt;h4&gt;Step #2&lt;/h4&gt;
&lt;p&gt;Basically  you want to create a grid using months, days, and years.&#160; As you can see, my grid has the months in one  column then the days in two columns and finally the years vertically in a  column. Once you get your dates on the &#8220;grid&#8221; you can save the file. Hint: Make  sure your text is equally spaced from top to bottom and from left to  right.&#160; This makes the math easier when  each date has the same white space.&lt;/p&gt;
&lt;h4&gt;Step #3&lt;/h4&gt;
&lt;p&gt;On to the  coding&#8230; Don&#8217;t worry it&#8217;s really easy, especially if you are using my PNG or have used the PSD file (It includes guidelines to keep your &#8220;grid&#8221; nice and  neat plus you can then cut and paste the CSS code in this step directly into  your themes&#8217; stylesheet without any math.)&lt;/p&gt;
&lt;p&gt; The CSS is as follows:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
 /*Date Sprite */&lt;br /&gt;
  .postdate {&lt;br /&gt;
  position: relative;&lt;br /&gt;
  width: 66px;&lt;br /&gt;
  height: 60px;&lt;br /&gt;
  float: left;&lt;br /&gt;
  }&lt;br /&gt;
  .month, .day, .year {&lt;br /&gt;
  position: absolute;&lt;br /&gt;
  text-indent:  -1000em;&lt;br /&gt;
  background-image:  url(images/date_img.png);&lt;br /&gt;
  background-repeat:  no-repeat;&lt;br /&gt;
  }&lt;br /&gt;
  .month { top: 10px; left: 0; width: 33px; height: 30px;}&lt;br /&gt;
  .day { top: 30px; left: 0; width: 33px; height: 30px;}&lt;br /&gt;
  .year { bottom: 0; right: 13px; width: 20px; height: 60px;}&lt;/p&gt;
&lt;p&gt;  .m-01 { background-position: 0 0px;}&lt;br /&gt;
  .m-02 { background-position: 0 -30px;}&lt;br /&gt;
  .m-03 { background-position: 0 -62px;}&lt;br /&gt;
  .m-04 { background-position: 0 -94px;}&lt;br /&gt;
  .m-05 { background-position: 0 -125px;}&lt;br /&gt;
  .m-06 { background-position: 0 -155px;}&lt;br /&gt;
  .m-07 { background-position: 0 -185px;}&lt;br /&gt;
  .m-08 { background-position: 0 -217px;}&lt;br /&gt;
  .m-09 { background-position: 0 -248px;}&lt;br /&gt;
  .m-10 { background-position: 0 -279px;}&lt;br /&gt;
  .m-11 { background-position: 0 -310px;}&lt;br /&gt;
  .m-12 { background-position: 0 -341px;}&lt;/p&gt;
&lt;p&gt;  .d-01 { background-position: -51px 0;}&lt;br /&gt;
  .d-02 { background-position: -51px -27px;}&lt;br /&gt;
  .d-03 { background-position: -51px -57px;}&lt;br /&gt;
  .d-04 { background-position: -51px -91px;}&lt;br /&gt;
  .d-05 { background-position: -51px -122px;}&lt;br /&gt;
  .d-06 { background-position: -51px -151px;}&lt;br /&gt;
  .d-07 { background-position: -51px -185px;}&lt;br /&gt;
  .d-08 { background-position: -51px -214px;}&lt;br /&gt;
  .d-09 { background-position: -51px -249px;}&lt;br /&gt;
  .d-10 { background-position: -51px -275px;}&lt;br /&gt;
  .d-11 { background-position: -51px -309px;}&lt;br /&gt;
  .d-12 { background-position: -51px -338px;}&lt;br /&gt;
  .d-13 { background-position: -51px -373px;}&lt;br /&gt;
  .d-14 { background-position: -51px -404px;}&lt;br /&gt;
  .d-15 { background-position: -51px -436px;}&lt;br /&gt;
  .d-16 { background-position: -51px -462px;}&lt;br /&gt;
  .d-17 { background-position: -100px -0px;}&lt;br /&gt;
  .d-18 { background-position: -100px -27px;}&lt;br /&gt;
  .d-19 { background-position: -100px -57px;}&lt;br /&gt;
  .d-20 { background-position: -100px -91px;}&lt;br /&gt;
  .d-21 { background-position: -100px -122px;}&lt;br /&gt;
  .d-22 { background-position: -100px -151px;}&lt;br /&gt;
  .d-23 { background-position: -100px -185px;}&lt;br /&gt;
  .d-24 { background-position: -100px -214px;}&lt;br /&gt;
  .d-25 { background-position: -100px -249px;}&lt;br /&gt;
  .d-26 { background-position: -100px -275px;}&lt;br /&gt;
  .d-27 { background-position: -100px -309px;}&lt;br /&gt;
  .d-28 { background-position: -100px -338px;}&lt;br /&gt;
  .d-29 { background-position: -100px -373px;}&lt;br /&gt;
  .d-30 { background-position: -100px -404px;}&lt;br /&gt;
  .d-31 { background-position: -100px -436;}&lt;/p&gt;
&lt;p&gt;  .y-2009 { background-position: -150px 0;}&lt;br /&gt;
  .y-2010 { background-position: -150px -60px;}&lt;br /&gt;
  .y-2011 { background-position: -150px -120px;}&lt;br /&gt;
  .y-2012 { background-position: -150px -180;}&lt;br /&gt;
  .y-2013 { background-position: -150px -240px;}&lt;br /&gt;
  .y-2014 { background-position: -150px -300px;}&lt;/p&gt;&lt;/blockquote&gt;
&lt;h4&gt; Explanation:&lt;/h4&gt;
&lt;p&gt;&lt;strong&gt;.postdate&lt;/strong&gt; &#8211; Sets the width and height of the entire  date.&#160; In this case we are going to make  our date fit into a box 66px by 60px.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;.month, .day, .year&lt;/strong&gt; &#8211; Sets the width and height of the  individual elements that make up our whole date Sprite. Our months and days are  33px wide by 30px high. The years are 33px wide by 60px high. When you put  these elements together they make a box 66px wide by 60px high. &#160;It also attaches the graphic we made in step  #1 so we can position it for each individual element in the Sprite.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;.m-01 through .m-12&lt;/strong&gt; &#8211; You guessed it!&#160; These are our months.&#160; This part of the CSS positions our graphic to  display the months.&#160; As you can see I set  &#160;the image to move on an X Y axis based  on where it appears on the image. The easiest way to figure out where the top  left corner (0,0) of each month, day, or year is on the larger image is to open  up Photoshop and select the Marquee tool.&#160;  Select from the top left down and over to the right to just above the  top left corner of you month, day or year and note where your pointer is using  the info panel&#8217;s stats.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;.d-01 through .d-31&lt;/strong&gt; &#8211; Is used for exactly the same thing as  .m-01 &amp;#8211; .m-12 except their used for the days rather than the months.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;.y-2009 through .y-2014&lt;/strong&gt; &#8211; Same as above only we use them for  the years.&lt;/p&gt;
&lt;h4&gt;Step #4&lt;/h4&gt;
&lt;p&gt;Open up the  loop in WordPress.&#160; The loop in WordPress  is the page(s) that display(s) your blog posts. This is usually the index.php page.&#160;Dates show up on other pages too but this tutorial only replaces the dates in the main loop.&#160; If you got to this section of the tutorial you are intelligent enough to seek and replace the other instances of dates in your theme in other files such as single.php, page.php, archives.php etc.&lt;/p&gt;
&lt;p&gt;Search for something along this line in your loop:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php the_time('F jS, Y') ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Replace with these lines:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;  &amp;lt;div class=&amp;quot;postdate&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div  class=&amp;quot;month m-&amp;lt;?php the_time(&amp;#8216;m&amp;#8217;) ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php  the_time(&amp;#8216;M&amp;#8217;) ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div  class=&amp;quot;day d-&amp;lt;?php the_time(&amp;#8216;d&amp;#8217;) ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_time(&amp;#8216;d&amp;#8217;)  ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div  class=&amp;quot;year y-&amp;lt;?php the_time(&amp;#8216;Y&amp;#8217;) ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_time(&amp;#8216;Y&amp;#8217;)  ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h4&gt;Step #5&lt;/h4&gt;
&lt;p&gt;Upload your  image, CSS, and your themes&#8217; loop (index.php). Hit refresh on your blog (make  sure you are on the page that posts are shown on) and Voila! You just super styled your dates using CSS sprites.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/dates-css-sprites-large.gif" height="250" onload="resizeImage( this )" alt="Beautify Your WordPress Dates with CSS Sprites" width="480" /&gt;&lt;/p&gt;
&lt;div&gt;&lt;img src="http://www.wpbeginner.com/authorpics/todd_wpbeginner.gif" onload="resizeImage( this )" alt="Todd Santoro" /&gt;Todd Santoro is the Principal and Sr. Designer at his company &lt;strong&gt;&lt;a href="http://toddsantoro.com/" rel="author" target="_blank"&gt;ToddSantoro.com Designs&lt;/a&gt;&lt;/strong&gt;. Todd has been working on the web for 11 years and excels in UI and graphic design. He loves paying attention to details and developing on the Wordpress framework. You can follow him on &lt;strong&gt;&lt;a href="http://twitter.com/toddsantoro" rel="author" target="_blank"&gt;Twitter&lt;/a&gt;&lt;/strong&gt;.&lt;/div&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=4wx7jUdGvGE:Ky9uoviJSsQ:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=4wx7jUdGvGE:Ky9uoviJSsQ:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=4wx7jUdGvGE:Ky9uoviJSsQ:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/4wx7jUdGvGE" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1204</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/4wx7jUdGvGE/" rel="alternate"/>
      <title>Use CSS Sprites to Beautify your WordPress Post Dates</title>
      <updated>2010-01-28T12:18:52+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Add Content and Completely Manipulate Your WordPress RSS Feeds</title>
    <updated>2010-01-28T12:18:52+00:00</updated>
    <published>2010-01-27T11:37:28+00:00</published>
    <id>planetaki.com:2185:post:60870000</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/Znz-OE0ahfg/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60870000" rel="full"/>
    <summary type="html">&lt;p&gt;A while back we shared &lt;a href="http://www.wpbeginner.com/plugins/control-your-rss-feeds-footer-in-wordpress/" target="_blank"&gt;how you can control your WordPress RSS Footer&lt;/a&gt; with a use of a famous plugin called RSS Footer by Joost. While the plugin is great, but it is very limited. You can only add text to the footer, and it is always the same text displayed on each post&#8217;s footer. What if you want to display different text for each post in your RSS post? What if you want specific posts to have a different title in RSS Feeds? What if you want to display a specific custom field in your RSS Feeds? Well this is why we present you this article which will show you how to add any type of content in your WordPress RSS Feeds. This hack will put you in control of your WordPress RSS Feeds and you can manipulate it in anyway you want. &lt;/p&gt;&lt;p&gt;Note: This hack is not for beginners. Only users who feel comfortable with editing functions.php file and have some knowledge of php should try this. Beginner users should either use the plugin mentioned in the article above, or consult professionals like us to do it for you.&lt;/p&gt;&lt;p&gt;In this first example, we will show you how you can use custom field to display specific text/object in your WordPress RSS Feed. This trick will allow you to show different text, advertisement, image, or anything else for each post. First open your functions.php and paste the following codes in the php tags:&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;A while back we shared &lt;a href="http://www.wpbeginner.com/plugins/control-your-rss-feeds-footer-in-wordpress/" target="_blank"&gt;how you can control your WordPress RSS Footer&lt;/a&gt; with a use of a famous plugin called RSS Footer by Joost. While the plugin is great, but it is very limited. You can only add text to the footer, and it is always the same text displayed on each post&amp;#8217;s footer. What if you want to display different text for each post in your RSS post? What if you want specific posts to have a different title in RSS Feeds? What if you want to display a specific custom field in your RSS Feeds? Well this is why we present you this article which will show you how to add any type of content in your WordPress RSS Feeds. This hack will put you in control of your WordPress RSS Feeds and you can manipulate it in anyway you want. &lt;/p&gt;
&lt;p&gt;Note: This hack is not for beginners. Only users who feel comfortable with editing functions.php file and have some knowledge of php should try this. Beginner users should either use the plugin mentioned in the article above, or consult professionals like us to do it for you.&lt;/p&gt;
&lt;h4&gt;1. Add a Custom Field to your WordPress RSS Footer&lt;/h4&gt;
&lt;p&gt;In this first example, we will show you how you can use custom field to display specific text/object in your WordPress RSS Feed. This trick will allow you to show different text, advertisement, image, or anything else for each post. First open your functions.php and paste the following codes in the php tags:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function wpbeginner_postrss($content) {&lt;br /&gt;
global $wp_query;&lt;br /&gt;
$postid = $wp_query-&amp;gt;post-&amp;gt;ID;&lt;br /&gt;
$coolcustom = get_post_meta($postid, 'coolcustom', true);&lt;br /&gt;
if(is_feed()) {&lt;br /&gt;
if($coolcustom !== '') {&lt;br /&gt;
$content = $content.&amp;quot;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;div&amp;gt;&amp;quot;.$coolcustom.&amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
else {&lt;br /&gt;
$content = $content;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
        return $content;&lt;br /&gt;
}&lt;br /&gt;
add_filter('the_excerpt_rss', 'wpbeginner_postrss');&lt;br /&gt;
add_filter('the_content', 'wpbeginner_postrss');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now most of you are wondering how this code is functioning. So here is an explanation. We create a function called wpbeginner_postrss which runs a global wp_query to search in each post if a custom field called &amp;#8220;coolcustom&amp;#8221; is defined. If Cool Custom is defined then it shows the value after the post content. If there is no custom field defined, then the function by default shows just the post content and nothing else. We use the variable $content to display content.  We are using if(is_feed) function and adding the custom text or other content to the main post content itself which you can see by the second filter. But it will only be displayed in the RSS Feeds due to our user of if(is_feed) function. By doing it this way, we avoid all the compatibility issues. &lt;/p&gt;
&lt;p&gt;Some of you will say but you just did what RSS footer plugin does with a function. Yes and NO. Yes we are adding the code at the footer of the post, but this text is not the same exact text for each post. It is different because you specify different text for each post via custom fields. This trick will be very handy to comply with the new FTC guidelines for blogs that have all different type of posts.&lt;/p&gt;
&lt;h4&gt;2. Adding Additional Text to Post Titles in RSS&lt;/h4&gt;
&lt;p&gt;Does your blog have guest posts, sponsored posts, and review posts? Well if you do then you will find this very useful. Some bloggers have custom styling to display each different type of post, so their users can distinguish between them. But when these posts go in a reader, all the stylings are gone. That is when this trick comes in handy. In this trick we will add any text either before or after the title.&lt;/p&gt;
&lt;p&gt;For example if your title was &amp;#8220;Commercial WordPress Theme &amp;#8211; StudioPress&amp;#8221; and it was a sponsored post, then you can change it to &amp;#8220;Sponsored Post: Commercial WordPress Theme &amp;#8211; StudioPress&amp;#8221;. Same if someone wrote a guest post etc.&lt;/p&gt;
&lt;p&gt;To accomplish this, open your functions.php file and add the following code in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function wpbeginner_titlerss($content) {&lt;br /&gt;
global $wp_query;&lt;br /&gt;
$postid = $wp_query-&amp;gt;post-&amp;gt;ID;&lt;br /&gt;
$gpost = get_post_meta($postid, 'guest_post', true);&lt;br /&gt;
$spost = get_post_meta($postid, 'sponsored_post', true); &lt;/p&gt;
&lt;p&gt;if($gpost !== '') {&lt;br /&gt;
$content = 'Guest Post: '.$content;&lt;br /&gt;
}&lt;br /&gt;
elseif ($spost !== ''){&lt;br /&gt;
$content = 'Sponsored Post: '.$content;&lt;br /&gt;
}&lt;br /&gt;
else {&lt;br /&gt;
$content = $content;&lt;br /&gt;
}&lt;br /&gt;
        return $content;&lt;br /&gt;
}&lt;br /&gt;
add_filter('the_title_rss', 'wpbeginner_titlerss');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Explanation for the code: &lt;/p&gt;
&lt;p&gt;We are using the function called wpbeginner_titlerss which runs a global wp_query to search in each post if it contains either $gpost or $spost. These two elements are basically looking for two specific custom fields called &amp;#8220;guest_post&amp;#8221; or &amp;#8220;sponsored_post&amp;#8221;. If anyone has these custom fields added with a value true, then the code will add it in the text. If not then you will just see the normal title. You can see first the code looks for if $gpost is true, if that is not true whether $spost is true. If that is not also not defined, then it displays normal content. But if either one of them was true, then it displays the different text you specify here. We are using $content string to display the post title.&lt;/p&gt;
&lt;p&gt;Now that was just displaying custom fields in the title. Do you want to display Category name on each title? Well then you should simply paste the following code in your functions.php file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function wpbeginner_cattitlerss($content) {&lt;br /&gt;
        $postcat = &amp;quot;&amp;quot;;&lt;br /&gt;
        foreach((get_the_category()) as $cat) {&lt;br /&gt;
                $postcat .= ' ('.$cat-&amp;gt;cat_name . ')';&lt;br /&gt;
        }&lt;br /&gt;
        $content = $content.$postcat;&lt;br /&gt;
        return $content;&lt;br /&gt;
}&lt;br /&gt;
add_filter('the_title_rss', 'wpbeginner_cattitlerss');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Explanation: We are using the function wpbgeinner_cattitlerss to get the category ID for each post and then displaying that right next to the title. So if the title is &amp;#8220;Get Contact Form 7&amp;#8243; now it would be &amp;#8220;Get Contact Form 7 [Plugins]&amp;#8220;. You can see that there is no if then variable in this code. We use $content for the main title and $postcat variable to define the category name. You rearrange that if you like.&lt;/p&gt;
&lt;h4&gt;3. Add Same Text on all Posts in RSS&lt;/h4&gt;
&lt;p&gt;If you just want to add the same text then you might as well use the plugin called RSS Footer by Joost because it is easier. But if you want to do it yourself this is how you do it. Open your functions.php file add the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function wpbeginner_postrss($content) {&lt;br /&gt;
        if(is_feed()){&lt;br /&gt;
                $content = 'This post was written by Syed Balkhi '.$content.'Check out WPBeginner';&lt;br /&gt;
        }&lt;br /&gt;
        return $content;&lt;br /&gt;
}&lt;br /&gt;
add_filter('the_excerpt_rss', 'wpbeginner_postrss');&lt;br /&gt;
add_filter('the_content', 'wpbeginner_postrss');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Explanation: We are calling a function wpbeginner_postrss to add in each post a content before the post saying This Post was written by Syed Balkhi and after the content Check out WPBeginner. But we add the function if(is_feed), so it will only be displayed in RSS Feeds.&lt;/p&gt;
&lt;p&gt;This would be very helpful if you wanted to sell ads on specific posts in RSS, add custom FTC guidelines or just wanted to have more control over your RSS Feeds.&lt;/p&gt;
&lt;p&gt;Source: We used Joost&amp;#8217;s RSS Footer plugin for a lot of guidance in writing this tutorial. The title RSS hack part we got from a &lt;a href="http://www.webinventif.fr/wordpress-ajouter-du-contenu-dans-son-flux/" target="_blank"&gt;French tutorial site&lt;/a&gt; and we added our own variables and gave it the ability to be custom titles per custom field.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-setup-auto-discovery-for-your-wordpress-rss-feeds/" title="Permanent Link: How to Setup Auto Discovery for Your WordPress RSS Feeds" rel="bookmark" target="_blank"&gt;How to Setup Auto Discovery for Your WordPress RSS Feeds&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/" title="Permanent Link: How to Disable RSS Feeds in WordPress" rel="bookmark" target="_blank"&gt;How to Disable RSS Feeds in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-related-posts-in-wordpress/" title="Permanent Link: How to Display Related Posts in WordPress" rel="bookmark" target="_blank"&gt;How to Display Related Posts in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Znz-OE0ahfg:jfXBZvlmdlY:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Znz-OE0ahfg:jfXBZvlmdlY:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Znz-OE0ahfg:jfXBZvlmdlY:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/Znz-OE0ahfg" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1200</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/Znz-OE0ahfg/" rel="alternate"/>
      <title>How to Add Content and Completely Manipulate Your WordPress RSS Feeds</title>
      <updated>2010-01-28T12:18:52+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Must Read: 55+ Most Wanted WordPress Tips, Tricks, and Hacks</title>
    <updated>2010-01-27T04:36:05+00:00</updated>
    <published>2010-01-27T00:36:52+00:00</published>
    <id>planetaki.com:2185:post:60645786</id>
    <link href="http://feedproxy.google.com/~r/Balkhis/~3/DDOO_Z9ikfA/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60645786" rel="full"/>
    <summary type="html">&lt;p&gt;There are times when you come across a feature in a blog, and you just start thinking to yourself: How can I get this in my WordPress blog/site as well. Everybody have experienced this feeling. Sometimes you know you want it, and don&#8217;t know where to look for, or even what to look for. In this article we will be sharing some of the most wanted WordPress Tips, Tricks, and Hacks that you will definitely find useful.&lt;/p&gt;&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:yIl2AUoC8zA" target="_blank"&gt;
      &lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )"/&gt;
    &lt;/a&gt;&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:D7DqB2pKExk" target="_blank"&gt;
      &lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:D7DqB2pKExk" border="0" onload="resizeImage( this )"/&gt;
    &lt;/a&gt;&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:gIN9vFwOqvQ" target="_blank"&gt;
      &lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:gIN9vFwOqvQ" border="0" onload="resizeImage( this )"/&gt;
    &lt;/a&gt;&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:dnMXMwOfBR0" target="_blank"&gt;
      &lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=dnMXMwOfBR0" border="0" onload="resizeImage( this )"/&gt;
    &lt;/a&gt;&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:V_sGLiPBpWU" target="_blank"&gt;
      &lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:V_sGLiPBpWU" border="0" onload="resizeImage( this )"/&gt;
    &lt;/a&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;There are times when you come across a feature in a blog, and you just start thinking to yourself: How can I get this in my WordPress blog/site as well. Everybody have experienced this feeling. Sometimes you know you want it, and don&#8217;t know where to look for, or even what to look for. In this article we will be sharing some of the most wanted WordPress Tips, Tricks, and Hacks that you will definitely find useful.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:D7DqB2pKExk" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:D7DqB2pKExk" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:dnMXMwOfBR0" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=dnMXMwOfBR0" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=DDOO_Z9ikfA:F3csQqJl2ck:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=DDOO_Z9ikfA:F3csQqJl2ck:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Balkhis/~4/DDOO_Z9ikfA" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.balkhis.com/?p=1720</id>
      <link href="http://feedproxy.google.com/~r/Balkhis/~3/DDOO_Z9ikfA/" rel="alternate"/>
      <title>Must Read: 55+ Most Wanted WordPress Tips, Tricks, and Hacks</title>
      <updated>2010-01-27T04:36:05+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>55+ Most Wanted WordPress Tips, Tricks, and Hacks</title>
    <updated>2010-01-25T23:52:50+00:00</updated>
    <published>2010-01-25T19:40:07+00:00</published>
    <id>planetaki.com:2185:post:60437801</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/DDOO_Z9ikfA/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60437801" rel="full"/>
    <summary type="html">&lt;p&gt;There are times when you come across a feature in a blog, and you just start thinking to yourself: How can I get this in my WordPress blog/site as well. Everybody have experienced this feeling. Sometimes you know you want it, and don&#8217;t know where to look for, or even what to look for. In this article we will be sharing some of the most wanted WordPress Tips, Tricks, and Hacks that you will definitely find useful.&lt;/p&gt;&lt;p&gt;These tutorials are classified under various skills level. For some tutorials, you will need to know basic HTML and some WordPress Knowledge. Use the link below as one of your resources:&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.wpbeginner.com/wp-themes/wordpress-theme-cheat-sheet-for-beginners/" target="_blank"&gt;WordPress Theme Cheat Sheet for Beginners&lt;/a&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;div align="right"&gt;
&lt;/div&gt;
&lt;p&gt;There are times when you come across a feature in a blog, and you just start thinking to yourself: How can I get this in my WordPress blog/site as well. Everybody have experienced this feeling. Sometimes you know you want it, and don&amp;#8217;t know where to look for, or even what to look for. In this article we will be sharing some of the most wanted WordPress Tips, Tricks, and Hacks that you will definitely find useful.&lt;/p&gt;
&lt;p&gt;These tutorials are classified under various skills level. For some tutorials, you will need to know basic HTML and some WordPress Knowledge. Use the link below as one of your resources:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/wp-themes/wordpress-theme-cheat-sheet-for-beginners/" target="_blank"&gt;WordPress Theme Cheat Sheet for Beginners&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;1. How to use a Custom Page as a Home Page in WordPress&lt;/h4&gt;
&lt;p&gt;This is one of the most wanted hacks that users want to know how to accomplish. First you need to learn how to create a custom page. You will need to duplicate your page.php or create a brand new .php file and add the following code at the very top:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php /* Template Name: WPBeginnerT1 */ ?&amp;gt; &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can change the template name. Change any styling, that you want in that page. Go to your WordPress admin panel and create a new page and select this template.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/custompagetemplate.gif" onload="resizeImage( this )" alt="Custom Page Template" /&gt;&lt;/p&gt;
&lt;p&gt;Once you have published this page go to Settings &amp;raquo; Reading in your admin panel.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/customhomepage.gif" onload="resizeImage( this )" alt="Custom Homepage in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;And select your page to be the homepage. Now you have yourself a Custom Home Page.&lt;/p&gt;
&lt;h4&gt;2. How to Create a Page that Displays Random Posts&lt;/h4&gt;
&lt;p&gt;Have you ever been to a site and saw this cool feature? They have a link in their top navigation to something like Stumbe! or Read Random Articles, or some other creative text. When you click on that link, it takes you to a page that displays one random page. Each time you refresh, you are delivered with a new post. Well this trick is just for you then.&lt;/p&gt;
&lt;p&gt;You would need to follow the trick #1 in this article to create a custom page template. And simply paste this code in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    &amp;lt;?php&lt;br /&gt;
    query_posts(array('orderby' =&amp;gt; 'rand', 'showposts' =&amp;gt; 1));&lt;br /&gt;
    if (have_posts()) :&lt;br /&gt;
    while (have_posts()) : the_post(); ?&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;h1&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h1&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;?php the_content(); ?&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;?php endwhile;&lt;br /&gt;
    endif; ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This is a simple WordPress Loop that is running a query to display random posts and the number 1 in there is telling WordPress to only show 1 post. You can change that number, but most of the time people do it one post a time. &lt;/p&gt;
&lt;p&gt;We have a &lt;a href="http://www.wpbeginner.com/random-posts-from-wpbeginner/" target="_blank"&gt;Quick Reading Page&lt;/a&gt; on our site as well, so you can see this trick in action.&lt;/p&gt;
&lt;h4&gt;3. How to Display any External RSS Feed on Your Site&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/killerhacks/rsstohtml.gif" onload="resizeImage( this )" alt="Display any External RSS Feed in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Have you seen other bloggers who display their other blog&amp;#8217;s feed on their site. You want to do it too for extra promotion and traffic. Well here is the tutorial for you. Simply paste the following code in anywhere in your theme:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php include_once(ABSPATH.WPINC.'/feed.php');&lt;br /&gt;
$rss = fetch_feed('http://feeds.feedburner.com/wpbeginner');&lt;br /&gt;
$maxitems = $rss-&amp;gt;get_item_quantity(5);&lt;br /&gt;
$rss_items = $rss-&amp;gt;get_items(0, $maxitems);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;?php if ($maxitems == 0) echo '&amp;lt;li&amp;gt;No items.&amp;lt;/li&amp;gt;';&lt;br /&gt;
else&lt;br /&gt;
// Loop through each feed item and display each item as a hyperlink.&lt;br /&gt;
foreach ( $rss_items as $item ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;&lt;br /&gt;
&amp;lt;a href='&amp;lt;?php echo $item-&amp;gt;get_permalink(); ?&amp;gt;'&lt;br /&gt;
title='&amp;lt;?php echo 'Posted '.$item-&amp;gt;get_date('j F Y | g:i a'); ?&amp;gt;'&amp;gt;&lt;br /&gt;
&amp;lt;?php echo $item-&amp;gt;get_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;?php endforeach; ?&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h4&gt;4. How to Display Relative Dates in WordPress&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/relativedating.gif" onload="resizeImage( this )" alt="Display Relative Dates in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Have you ever seen this in blog posts and comments and wondered how did this blogger manage to do this? Actually it is pretty easy.&lt;/p&gt;
&lt;p&gt;You would need to download a plugin called &lt;a href="http://wordpress.org/extend/plugins/wp-relativedate/" rel="nofollow" target="_blank"&gt;WP-Relative Date&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Once you have downloaded and activated the plugin, look in your single.php, index.php, and page.php for this code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php the_date(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Replace it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php relative_post_the_date(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;h4&gt;5. Allow Users to Submit News on Your Site&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/submitanews1.gif" onload="resizeImage( this )" alt="Submit a News in WordPress Site Feature" /&gt;&lt;/p&gt;
&lt;p&gt;This trick is being adapted by many top sites to keep a useful resource section in their sidebar which is maintained mostly by site&amp;#8217;s audience. Did you want to know how you could do that? &lt;/p&gt;
&lt;p&gt;First you will need to download a plugin called &lt;a href="http://wordpress.org/extend/plugins/tdo-mini-forms/" rel="nofollow" target="_blank"&gt;TDO Mini Forms&lt;/a&gt; and follow &lt;a href="http://www.wpbeginner.com/plugins/how-to-allow-users-to-submit-news-posts-to-your-wordpress-site/" target="_blank"&gt;directions&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;6. Link to External Links from Your Post Title&lt;/h4&gt;
&lt;p&gt;Did you see other sites link to external posts from their post title? Well that is because it is completely useless to create a new post where inside you are going to tell users to go to another site to read it. You are wasting your user&amp;#8217;s time. This trick will allow you to link to external links from your post title in WordPress.&lt;/p&gt;
&lt;p&gt;First open your &lt;em&gt;functions.php&lt;/em&gt; file and add the following codes in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    function print_post_title() {&lt;br /&gt;
    global $post;&lt;br /&gt;
    $thePostID = $post-&amp;gt;ID;&lt;br /&gt;
    $post_id = get_post($thePostID);&lt;br /&gt;
    $title = $post_id-&amp;gt;post_title;&lt;br /&gt;
    $perm = get_permalink($post_id);&lt;br /&gt;
    $post_keys = array(); $post_val = array();&lt;br /&gt;
    $post_keys = get_post_custom_keys($thePostID);&lt;/p&gt;
&lt;p&gt;    if (!empty($post_keys)) {&lt;br /&gt;
    foreach ($post_keys as $pkey) {&lt;br /&gt;
    if ($pkey=='url1' || $pkey=='title_url' || $pkey=='url_title') {&lt;br /&gt;
    $post_val = get_post_custom_values($pkey);&lt;br /&gt;
    }&lt;br /&gt;
    }&lt;br /&gt;
    if (empty($post_val)) {&lt;br /&gt;
    $link = $perm;&lt;br /&gt;
    } else {&lt;br /&gt;
    $link = $post_val[0];&lt;br /&gt;
    }&lt;br /&gt;
    } else {&lt;br /&gt;
    $link = $perm;&lt;br /&gt;
    }&lt;br /&gt;
    echo '&amp;lt;h2&amp;gt;&amp;lt;a href=&amp;quot;'.$link.'&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;'.$title.'&amp;quot;&amp;gt;'.$title.'&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt;';&lt;br /&gt;
    } &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;These codes must be placed in php tags. &lt;/p&gt;
&lt;p&gt;Then open your index.php and find the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;h2&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;And replace it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php print_post_title(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This can also be accomplished by a use of a plugin called &lt;a href="http://txfx.net/code/WordPress/page-links-to/" rel="nofollow" target="_blank"&gt;Page Links To&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;7. &lt;a href="http://www.wpbeginner.com/wp-tutorials/create-a-free-email-newsletter-service-using-wordpress/" target="_blank"&gt;Use WordPress as a Free Email Newsletter Service&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/newsletter/catid.gif" onload="resizeImage( this )" alt="Free Email News Service using WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Did you see other sites using Email Newsletter services? Well you can make your WordPress work this way as well. Simply follow &lt;a href="http://www.wpbeginner.com/wp-tutorials/create-a-free-email-newsletter-service-using-wordpress/" target="_blank"&gt;this tutorial&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;8. Display any Number of Posts in a Loop&lt;/h4&gt;
&lt;p&gt;Did you ever want to display a different number of posts on different pages. For example on your category pages, you want to display 10 posts which you can control from your Admin panel, but another page you want to show only 5 posts. Well this tutorial is just for you. &lt;/p&gt;
&lt;p&gt;Open a Template file where you want to display an x number of recent posts:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    // if everything is in place and ready, let&amp;#8217;s start the loop&lt;/p&gt;
&lt;p&gt;    &lt;/p&gt;
&lt;p&gt;    // to display &amp;#8216;n&amp;#8217; number of posts, we need to execute the loop &amp;#8216;n&amp;#8217; number of times&lt;br /&gt;
    // so we define a numerical variable called &amp;#8216;$count&amp;#8217; and set its value to zero&lt;br /&gt;
    // with each iteration of the loop, the value of &amp;#8216;$count&amp;#8217; will increase by one&lt;br /&gt;
    // after the value of &amp;#8216;$count&amp;#8217; reaches the specified number, the loop will stop&lt;br /&gt;
    // *USER: change the &amp;#8216;n&amp;#8217; to the number of posts that you would like to display&lt;/p&gt;
&lt;p&gt;    
    if ($count == "n") { break; }&lt;br /&gt;
    else { ?&gt;&lt;/p&gt;
&lt;p&gt;    // for CSS styling and layout purposes, we wrap the post content in a div&lt;br /&gt;
    // we then display the entire post content via the &amp;#8216;the_content()&amp;#8217; function&lt;br /&gt;
    // *USER: change to &amp;#8216;&amp;#8216; to display post excerpts instead&lt;/p&gt;
&lt;div class="post"&gt;
    &lt;br /&gt;
    
    &lt;/div&gt;
&lt;p&gt;    // here, we continue with the limiting of the number of displayed posts&lt;br /&gt;
    // each iteration of the loop increases the value of &amp;#8216;$count&amp;#8217; by one&lt;br /&gt;
    // the final two lines complete the loop and close the if statement&lt;/p&gt;
&lt;p&gt;    &lt;br /&gt;
    &lt;br /&gt;
     &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="http://perishablepress.com/press/2007/08/06/super-loop-exclude-specific-categories-and-display-any-number-of-posts/" rel="nofollow" target="_blank"&gt;Source&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;9. Highlight Author&amp;#8217;s Comment&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/authorhighlight.gif" onload="resizeImage( this )" alt="Highlight Authors comment" /&gt;&lt;/p&gt;
&lt;p&gt;Have you ever seen this on blogs where author&amp;#8217;s comments are distinguished from other comments? Well this is a simple and easy trick.&lt;/p&gt;
&lt;p&gt;First you need to open your style.css in your template folder and add the following:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;.authorstyle {  background-color: #B3FFCC !important; }&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Then you need to open your comments.php which is also located in your themes folder and find the code that looks some what like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;li &amp;lt;?php echo $oddcomment; ?&amp;gt;id=&amp;quot;comment-&amp;lt;?php comment_ID() ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Replace it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;li class=&amp;quot;&amp;lt;?php if ($comment-&amp;gt;user_id == 1) $oddcomment = &amp;quot;authorstyle&amp;quot;; echo $oddcomment; ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Note you must change 1 to the user id of the author. Once you do this, your blog comments will have a different background for the author&amp;#8217;s comment compared to the rest.&lt;/p&gt;
&lt;p&gt;Thanks to &lt;a href="http://www.mattcutts.com/blog/highlight-author-comments-wordpress/" rel="nofollow" target="_blank"&gt;Matt Cutts&lt;/a&gt; for this tutorial.&lt;/p&gt;
&lt;h4&gt;10. &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-post-thumbnails-in-wordpress/" target="_blank"&gt;Create Thumbnails for Each Post and Display Them&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/howtothumbnail.gif" onload="resizeImage( this )" alt="Create Thumbnails for Each Post in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;This technique utilizes the new feature added in WordPress 2.9 to add Thumbnails to each post and you can display them anywhere in the loop.&lt;/p&gt;
&lt;h4&gt;11. Display Feedburner Subscriber Count as Text&lt;/h4&gt;
&lt;p&gt;Have you ever been to a site that is not using Feedburner button and is still showing subscriber count? Well they are probably using the trick we are about to share. Most designers use this trick to have custom styling and avoid the annoying feedburner button.&lt;/p&gt;
&lt;p&gt;Simply copy and paste this code anywhere you like most likely &lt;em&gt;sidebar.php&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    &amp;lt;?php&lt;br /&gt;
    //get cool feedburner count&lt;br /&gt;
    $whaturl=&amp;quot;http://api.feedburner.com/awareness/1.0/GetFeedData?uri=your feedburner id&amp;quot;;&lt;/p&gt;
&lt;p&gt;    //Initialize the Curl session&lt;br /&gt;
    $ch = curl_init();&lt;/p&gt;
&lt;p&gt;    //Set curl to return the data instead of printing it to the browser.&lt;br /&gt;
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);&lt;/p&gt;
&lt;p&gt;    //Set the URL&lt;br /&gt;
    curl_setopt($ch, CURLOPT_URL, $whaturl);&lt;/p&gt;
&lt;p&gt;    //Execute the fetch&lt;br /&gt;
    $data = curl_exec($ch);&lt;/p&gt;
&lt;p&gt;    //Close the connection&lt;br /&gt;
    curl_close($ch);&lt;br /&gt;
    $xml = new SimpleXMLElement($data);&lt;br /&gt;
    $fb = $xml-&amp;gt;feed-&amp;gt;entry['circulation'];&lt;br /&gt;
    echo $fb;&lt;br /&gt;
    //end get cool feedburner count&lt;br /&gt;
    ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can wrap it around in styling to make it look like however you want.&lt;/p&gt;
&lt;h4&gt;12. Display Twitter Follower Count as Text&lt;/h4&gt;
&lt;p&gt;There are users who absolutely hate buttons like Feedburner buttons or Twittercounter buttons. Are you one of them? Do you want to display your twitter count as text, so it blends in to your new custom design? Well then this hack is just for you. &lt;/p&gt;
&lt;p&gt;First you would need to create a file twitter.php and paste the following code in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
$tw = get_option(&amp;quot;twitterfollowerscount&amp;quot;);&lt;br /&gt;
if ($tw['lastcheck'] &amp;lt; ( mktime() %u2013 3600 ) )&lt;br /&gt;
{&lt;br /&gt;
$xml=file_get_contents('http://twitter.com/users/show.xml?screen_name=wpbeginner');&lt;br /&gt;
if (preg_match('/followers_count&amp;gt;(.*)&amp;lt;/',$xml,$match)!=0) {&lt;br /&gt;
$tw['count'] = $match[1];&lt;br /&gt;
}&lt;br /&gt;
$tw['lastcheck'] = mktime();&lt;br /&gt;
update_option(&amp;quot;twitterfollowerscount&amp;quot;,$tw);&lt;br /&gt;
}&lt;br /&gt;
echo $tw['count'];&lt;br /&gt;
?&amp;gt; &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Make sure to replace wpbeginner with your twitter name.&lt;/p&gt;
&lt;p&gt;Then Simply place this code anywhere you want to display this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php include(&amp;quot;twitter.php&amp;quot;); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="http://www.wprecipes.com" rel="nofollow" target="_blank"&gt;Source&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;13. &lt;a href="http://www.catswhocode.com/blog/create-your-own-private-twitter-site-using-wordpress" rel="nofollow" target="_blank"&gt;Create Your Own Private Twitter Site using WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.catswhocode.com/blog/create-your-own-private-twitter-site-using-wordpress" rel="nofollow" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/usesofwp/twitter.gif" onload="resizeImage( this )" alt="Create Your Own Private Twitter Site Using WordPress" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;14. Control When Your Posts are Available via RSS&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/killerhacks/rsstimecontrol.gif" onload="resizeImage( this )" alt="Control When Your Posts are Available via RSS" /&gt;&lt;/p&gt;
&lt;p&gt;There are times when you publish a post and suddenly find an error. You can go back in the admin panel and change it, but it is already published in the feeds. With this hack, you can put a delay of as many minutes as you like, so you can double check the post live.&lt;/p&gt;
&lt;p&gt;Simply open your functions.php and add the following code in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    function publish_later_on_feed($where) {&lt;br /&gt;
    global $wpdb;&lt;/p&gt;
&lt;p&gt;    if ( is_feed() ) {&lt;br /&gt;
    // timestamp in WP-format&lt;br /&gt;
    $now = gmdate('Y-m-d H:i:s');&lt;/p&gt;
&lt;p&gt;    // value for wait;   device&lt;br /&gt;
    $wait = '10'; // integer&lt;/p&gt;
&lt;p&gt;    // http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff&lt;br /&gt;
    $device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR&lt;/p&gt;
&lt;p&gt;    // add SQL-sytax to default $where&lt;br /&gt;
    $where .= &amp;quot; AND TIMESTAMPDIFF($device, $wpdb-&amp;gt;posts.post_date_gmt, '$now') &amp;gt; $wait &amp;quot;;&lt;br /&gt;
    }&lt;br /&gt;
    return $where;&lt;br /&gt;
    }&lt;/p&gt;
&lt;p&gt;    add_filter('posts_where', 'publish_later_on_feed');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Change the time from 10 minutes to whatever you like.&lt;/p&gt;
&lt;h4&gt;15. Allow Multiple Authors to be Associated with One Post&lt;/h4&gt;
&lt;p&gt;If you run a multi-author blog and have a post coming up that more than one author has contributed to, you can use this trick. This trick is being used by many top multi-author blogs.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/coauthors.gif" onload="resizeImage( this )" alt="Co-Author WordPress Blogs" /&gt;&lt;/p&gt;
&lt;p&gt;Simply Download a Plugin called &lt;a href="http://wordpress.org/extend/plugins/co-authors/" rel="nofollow" target="_blank"&gt;Co-Authors&lt;/a&gt; or &lt;a href="http://wordpress.org/extend/plugins/co-authors-plus/" rel="nofollow" target="_blank"&gt;Co-Authors Plus&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;16. Change the Default Gravatar Button&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/changegravatar/goodbye.gif" onload="resizeImage( this )" alt="Good Bye Mystery Man" /&gt;&lt;/p&gt;
&lt;p&gt;The default mystery man is really annoying for most users. Plus if you have one more chance of branding your blog, then why not do it. Changing your default gravatar lets you brand your blog more. With this snippet below you can change your default gravatar.&lt;/p&gt;
&lt;p&gt;First you need to open your &lt;em&gt;functions.php&lt;/em&gt; which is located in your template folder. If you don&amp;#8217;t have one then create one and insert the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;add_filter( 'avatar_defaults', 'newgravatar' );   &lt;/p&gt;
&lt;p&gt;function newgravatar ($avatar_defaults) {&lt;br /&gt;
    $myavatar = get_bloginfo('template_directory') . '/images/gravataricon.gif';&lt;br /&gt;
    $avatar_defaults[$myavatar] = &amp;amp;quot;WPBeginner&amp;amp;quot;;&lt;br /&gt;
    return $avatar_defaults;&lt;br /&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In the code the image is being extracted from the theme directory and it is called gravataricon.gif obviously you will change it to your image name. Where it says WPBeginner, that is the name of the avatar of how it will show in your admin panel options area.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/changegravatar/gravatarsettings.gif" onload="resizeImage( this )" alt="Gravatar Settings" /&gt;&lt;/p&gt;
&lt;p&gt;Head over to your admin panel and click Settings &gt; Discussion and change the icon, and now you have a branded comment area with your logo.&lt;/p&gt;
&lt;h4&gt;17. Display Random Header Images in WordPress&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/randomheaderimages.gif" onload="resizeImage( this )" alt="Random Header Images" /&gt;&lt;/p&gt;
&lt;p&gt;Most blog designs get boring if they have a huge header picture and it is static. This is when this tutorial comes in to make your header images dynamic because it rotates on each visit. You can select as many images as you want to rotate randomly. It brings life to a blog.&lt;/p&gt;
&lt;p&gt;First you need to name your images in this format:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;headerimage_1.gif&lt;/li&gt;
&lt;li&gt;headerimage_2.gif&lt;/li&gt;
&lt;li&gt;headerimage_3.gif&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You must separate the name with an underscore. You can change the headerimage text to himage or anything you like.&lt;/p&gt;
&lt;p&gt;Once you have done that paste the following code in your &lt;em&gt;header.php&lt;/em&gt; where you would like the images to be displayed or in any other file.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;img src=&amp;quot;http://path_to_images/headerimage_&amp;lt;?php echo(rand(1,3)); ?&amp;gt;.gif&amp;quot;&lt;br /&gt;
width=&amp;quot;image_width&amp;quot; height=&amp;quot;image_height&amp;quot; alt=&amp;quot;image_alt_text&amp;quot; /&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Make sure that you change the number 3 if you decide to do more than 3 images. This code is not exclusive for WordPress, it will work with any php based platform.&lt;/p&gt;
&lt;h4&gt;18. Only Display Certain Categories in a Menu&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/categoryhacks/catmenu.gif" onload="resizeImage( this )" alt="Display Certain Categories in a Menu" /&gt;&lt;/p&gt;
&lt;p&gt;In many cases, users only want to display certain categories in their navigation menu at the top of the page. There are limited spots, that can only be filled by top categories, but if you use the default wp_list_categories code, it will show all categories. This is why this hack below comes in very handy when you want to create a navigation menu and only display certain categories. &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;ul class=&amp;quot;navmenubar&amp;quot; style=&amp;quot;float:left; width:730px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_list_categories('orderby=name&amp;amp;include=7,9,19,16,1,5,17,23'); ?&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Note, you can also change the &amp;#8216;include&amp;#8217; text to &amp;#8216;exclude&amp;#8217; and show all categories and exclude those that you don&amp;#8217;t want displayed. The numbers displayed in the code are the category IDs. Remember since WordPress shows categories in a list format, you will need to edit the CSS in order to make it work.&lt;/p&gt;
&lt;h4&gt;19. How set an Expiration Date for Your Posts&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/killerhacks/expired.gif" onload="resizeImage( this )" alt="Set an Expiration Date for Your Posts" /&gt;&lt;/p&gt;
&lt;p&gt;This hack comes becomes very useful when you are running a contest because you might be posting information such as clues or hints that you don&amp;#8217;t want to stay up for ever. Instead of manually removing the article, you can just make it expire automatically. It also works if you have a product that you are offering a discount on. You posted it on your blog, but you don&amp;#8217;t want that discount to stay on your blog after its over. So you can remove it automatically with this code.&lt;/p&gt;
&lt;p&gt;All you need to do is replace your WordPress Loop with this code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
if (have_posts()) :&lt;br /&gt;
     while (have_posts()) : the_post(); ?&amp;gt;&lt;br /&gt;
         $expirationtime = get_post_custom_values('expiration');&lt;br /&gt;
         if (is_array($expirationtime)) {&lt;br /&gt;
             $expirestring = implode($expirationtime);&lt;br /&gt;
         }&lt;/p&gt;
&lt;p&gt;         $secondsbetween = strtotime($expirestring)-time();&lt;br /&gt;
         if ( $secondsbetween &amp;gt; 0 ) {&lt;br /&gt;
             // For example&amp;#8230;&lt;br /&gt;
             the_title();&lt;br /&gt;
             the_excerpt();&lt;br /&gt;
         }&lt;br /&gt;
     endwhile;&lt;br /&gt;
endif;&lt;br /&gt;
?&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Once you have done that, you can use custom fields when writing a post to set an expiration date. Make sure you select the key &lt;strong&gt;&amp;#8220;expiration&amp;#8221;&lt;/strong&gt; and use the the following date format: &lt;strong&gt;mm/dd/yyyy 00:00:00&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Now this hack does not remove or unpublish the article instead it just excludes the article from being displayed in the loop.&lt;/p&gt;
&lt;h4&gt;20. Delete Posts Revisions from Your Database&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/killerhacks/deleterevision.gif" onload="resizeImage( this )" alt="Delete Batches of Post Revisions" /&gt;&lt;/p&gt;
&lt;p&gt;WordPress has a lot of good features and one of them is Post Revisions. This was included in WordPress 2.6, even though this is a good feature, it can cause some problems. One of them is increase the size of your database. Depending on how long it takes you to write a post, you might have as many as fifty post revisions. Now you can manually delete them, or you can run a simple query which we will show you in this post and get rid of all these useless revisions. &lt;/p&gt;
&lt;p&gt;First thing you need to do is login to your phpMyAdmin and select your WordPress Database.&lt;/p&gt;
&lt;p&gt;Click on the SQL Button and enter the following query:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;DELETE FROM wp_posts WHERE post_type = &amp;quot;revision&amp;quot;;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In this code basically we looked up a table wp_posts and removed every post that had a post_type revision associated with it. Now depending on the size of your database, this may save you a lot of space.&lt;/p&gt;
&lt;h4&gt;21. &lt;a href="http://www.cagintranet.com/archive/the-new-improved-way-to-turn-wordpress-27-into-a-membership-communit/" rel="nofollow" target="_blank"&gt;Create a Membership Directory using WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.cagintranet.com/archive/the-new-improved-way-to-turn-wordpress-27-into-a-membership-communit/" rel="nofollow" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/usesofwp/membershipdirectory.gif" onload="resizeImage( this )" alt="Create a Membership Directory using WordPress" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The end result is a moderated directory that allows members to enter information about themselves. &lt;a href="http://pghdesigners.com/" rel="nofollow" target="_blank"&gt;Live Example&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;22. Create a Peel Away Effect in WordPress&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/peelaway.gif" onload="resizeImage( this )" alt="Peel Away Effect in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Have you arrived at a site where you see this page peel effect that some bloggers have. They are advertising their recent ebook, or some other product, and you want to do the same. Well then Hongkiat Blog has a &lt;a href="http://www.hongkiat.com/blog/create-a-peel-away-effect-on-website-how-to/" rel="nofollow" target="_blank"&gt;great tutorial&lt;/a&gt; about this. The tutorial eliminates the use of plugin, but if you want an alternative option. &lt;a href="http://wordpress.org/extend/plugins/page-peel/" rel="nofollow" target="_blank"&gt;Page Peel Plugin&lt;/a&gt; can get you the same functionality with a lot less work.&lt;/p&gt;
&lt;h4&gt;23. Custom CSS Stylesheet for Individual Posts&lt;/h4&gt;
&lt;p&gt;There are sites that use custom stylesheet for individual posts. Do you want to know how you can do it also? It is very simple. This is accomplished by the use of Custom Fields. &lt;/p&gt;
&lt;p&gt;First you will need to open your &lt;em&gt;header.php&lt;/em&gt; and insert this code somewhere in between &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; codes.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (is_single()) {&lt;br /&gt;
    $customstyle = get_post_meta($post-&amp;gt;ID, 'customstyle', true);&lt;br /&gt;
    if (!empty($customstyle)) { ?&amp;gt;&lt;br /&gt;
        &amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;?php echo $customstyle; ?&amp;gt;&lt;br /&gt;
        &amp;lt;style&amp;gt;&lt;br /&gt;
    &amp;lt;?php }&lt;br /&gt;
} ?&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Once you have done that you can add a custom field in each post with the name customstyle and add the css codes in there.&lt;/p&gt;
&lt;p&gt;For example if you want the a certain image to have border you can add:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;#coolimageclass{border: 5px solid #ccc;}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Use the format above and you now have custom CSS for your single posts.&lt;/p&gt;
&lt;h4&gt;24. Easily Add Custom Header, Footer, or Sidebar on Different Categories&lt;/h4&gt;
&lt;p&gt;Did you ever come across a site that is using different header or sidebar for some categories? Well this is how you can accomplish that as well.&lt;/p&gt;
&lt;p&gt;To call a particular header, you will need to open your &lt;em&gt;index.php&lt;/em&gt; and replace your normal header code with this one:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (is_category('Blogging')) {&lt;br /&gt;
    get_header('blogging');&lt;br /&gt;
} else {&lt;br /&gt;
    get_header();&lt;br /&gt;
} ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code above is basically telling WordPress that if someone opens the category called &amp;#8220;Blogging&amp;#8221; then WordPress needs to display a file called header-blogging.php if it exist. If it does not exist, or if the category is not blogging, then WordPress displays the default header file.&lt;/p&gt;
&lt;p&gt;To get a separate sidebar for each all you need to do is add the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (is_category('Blogging')) {&lt;br /&gt;
    get_sidebar('blogging');&lt;br /&gt;
} else {&lt;br /&gt;
    get_sidebar();&lt;br /&gt;
} ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The code above will look for sidebar-blogging.php to replace the default footer file if the category is Blogging.&lt;/p&gt;
&lt;p&gt;To get a separate footer for each category all you need to do is add the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (is_category('Blogging')) {&lt;br /&gt;
    get_footer('blogging');&lt;br /&gt;
} else {&lt;br /&gt;
    get_footer();&lt;br /&gt;
} ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The code above will look for footer-blogging.php to replace the default footer file if the category is Blogging.&lt;/p&gt;
&lt;h4&gt;25. &lt;a href="http://www.wpbeginner.com/showcase/best-of-best-wordpress-custom-login-page-designs/" target="_blank"&gt;Create a Custom Login Page Design for WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/showcase/best-of-best-wordpress-custom-login-page-designs/" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/login/sanandres.gif" onload="resizeImage( this )" alt="Custom WordPress Login Page" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Do you have a multi-author site, or a community site powered by WordPress? Do you want to rebrand the login page design? Then this tutorial is just right for you.&lt;/p&gt;
&lt;h4&gt;26. Place Content Only in your RSS Feeds&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/rssfooter.gif" onload="resizeImage( this )" alt="RSS Footer" /&gt;&lt;/p&gt;
&lt;p&gt;Do you have a lot of RSS Subscribers? Well then maybe you want to monetize it just like tons of other users who are doing it. The plugin called &lt;a href="http://yoast.com/wordpress/rss-footer/" rel="nofollow" target="_blank"&gt;RSS Footer&lt;/a&gt; lets you add content to your RSS Feeds. You can style it however you like. &lt;/p&gt;
&lt;h4&gt;27. Disable HTML in WordPress Comments&lt;/h4&gt;
&lt;p&gt;Did you ever see in your SPAM folder, how many comments have tons of HTML codes which is basically links. That is how most spammers add links. But you can disable HTML in WordPress Comments to be functional. So if someone uses the strong code, it will not bold the text etc.&lt;/p&gt;
&lt;p&gt;All you have to do is simply open your &lt;em&gt;functions.php&lt;/em&gt; and add the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;// This will occur when the comment is posted&lt;br /&gt;
function plc_comment_post( $incoming_comment ) {&lt;/p&gt;
&lt;p&gt;	// convert everything in a comment to display literally&lt;br /&gt;
	$incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']);&lt;/p&gt;
&lt;p&gt;	// the one exception is single quotes, which cannot be #039; because WordPress marks it as spam&lt;br /&gt;
	$incoming_comment['comment_content'] = str_replace( &amp;quot;'&amp;quot;, '&amp;amp;apos;', $incoming_comment['comment_content'] );&lt;/p&gt;
&lt;p&gt;	return( $incoming_comment );&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;// This will occur before a comment is displayed&lt;br /&gt;
function plc_comment_display( $comment_to_display ) {&lt;/p&gt;
&lt;p&gt;	// Put the single quotes back in&lt;br /&gt;
	$comment_to_display = str_replace( '&amp;amp;apos;', &amp;quot;'&amp;quot;, $comment_to_display );&lt;/p&gt;
&lt;p&gt;	return $comment_to_display;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="http://www.theblog.ca/literal-comments" target="_blank"&gt;Source&lt;/a&gt; &amp;#8211; The original author also offers a plugin that you can download from his site.&lt;/p&gt;
&lt;h4&gt;28. Add Digg Buttons in Your Posts using Custom Fields&lt;/h4&gt;
&lt;p&gt;Doesn&amp;#8217;t it get annoying posting digg buttons on your articles every time. But you don&amp;#8217;t want to display them on every page by default because some articles are not digg worthy. Well this solution would be very helpful then. In this plugin, you will add the codes in your single.php once, and in each article that you want to display the button, you will just have to enable it using the custom field.&lt;/p&gt;
&lt;p&gt;First open your &lt;em&gt;single.php&lt;/em&gt; and find a code that looks like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Replace it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (have_posts()) : while (have_posts()) : the_post();&lt;br /&gt;
// check for digg button for single page&lt;br /&gt;
$digg = get_post_meta($post-&amp;gt;ID, 'Digg', $single = true);&lt;br /&gt;
?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now you need to add the following code within the loop anywhere you like:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php // if there's a single page digg button&lt;br /&gt;
if($digg !== '') { ?&amp;gt;&lt;br /&gt;
&amp;lt;script src=&amp;quot;http://digg.com/tools/diggthis.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php } // end if statement&lt;br /&gt;
// if there's not a digg button&lt;br /&gt;
else { echo ''; } ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You may wrap it around with any styling that you want. Save the &lt;em&gt;single.php&lt;/em&gt; and upload it to your theme folder.&lt;/p&gt;
&lt;p&gt;Now when writing a post if you want to add a digg post simply add a custom field like shown in the screen shot below:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/diggcustomfield.gif" onload="resizeImage( this )" alt="Add a Digg Button in Your WordPress using Custom Field" /&gt;&lt;/p&gt;
&lt;p&gt;Whenever you specify this custom field, WordPress will display a digg button on your post.&lt;/p&gt;
&lt;h4&gt;29. Display Latest Sticky Posts in WordPress&lt;/h4&gt;
&lt;p&gt;Assuming that you have already created a &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/" target="_blank"&gt;custom page template&lt;/a&gt; and/or already have &lt;a href="http://codex.wordpress.org/The_Loop" target="_blank"&gt;The Loop&lt;/a&gt; ready, paste the following code before the loop.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
	/* Get all sticky posts */&lt;br /&gt;
	$sticky = get_option( 'sticky_posts' );&lt;/p&gt;
&lt;p&gt;	/* Sort the stickies with the newest ones at the top */&lt;br /&gt;
	rsort( $sticky );&lt;/p&gt;
&lt;p&gt;	/* Get the 5 newest stickies (change 5 for a different number) */&lt;br /&gt;
	$sticky = array_slice( $sticky, 0, 5 );&lt;/p&gt;
&lt;p&gt;	/* Query sticky posts */&lt;br /&gt;
	query_posts( array( 'post__in' =&amp;gt; $sticky, 'caller_get_posts' =&amp;gt; 1 ) );&lt;br /&gt;
?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code can very well be used in featured slider, or any other advanced feature that you would like to display on your site. This snippet is mostly geared toward a WordPress site that has a &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-homepage-in-wordpress/" target="_blank"&gt;custom homepage&lt;/a&gt; or a magazine style look.&lt;/p&gt;
&lt;p&gt;The credit to this code goes to &lt;a href="http://justintadlock.com/archives/2009/03/28/get-the-latest-sticky-posts-in-wordpress" target="_blank"&gt;Justin Tadlock&lt;/a&gt; and partially to &lt;a href="http://www.nathanrice.net/" target="_blank"&gt;Nathan Rice&lt;/a&gt; for coming up with the array slice solution.&lt;/p&gt;
&lt;h4&gt;30. Display a Retweet Button On Your Site&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/killerhacks/retweet.gif" onload="resizeImage( this )" alt="Add a Retweet button in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;With Twitter getting so much exposure, as a blogger you should already be using it to your advantage. Power of twitter is like no other because it is word of mouth advertising. To make this easier on your readers, what you can do is place a prominent retweet button, so they can retweet the article with one click. Not only just that, but you should make it the way so you can track the retweets as well. That is where tweetmeme widget comes in. &lt;/p&gt;
&lt;p&gt;In this tutorial we will have you create a button that will link to the text in the following format:&lt;/p&gt;
&lt;p&gt;RT @yoursitename Title of the Post &amp;#8211; Link&lt;/p&gt;
&lt;p&gt;Add the following code in the template file of your choosing most likely &lt;em&gt;single.php&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;For the Large Button:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
tweetmeme_source = 'wpbeginner';&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://tweetmeme.com/i/scripts/button.js&amp;quot;&amp;gt; &amp;lt;/script&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;For the Compact Button: &lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;
tweetmeme_style = &amp;quot;compact&amp;quot;;&lt;br /&gt;
tweetmeme_source = 'wpbeginner';&lt;br /&gt;
&amp;lt;/script&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Remember to change the source to your twitter account name, this way you will not only promote your account to get more followers, but your article will be promoted as well.&lt;/p&gt;
&lt;h4&gt;31. Display Categories in a Drop Down Menu&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/categoryhacks/catdropdown.gif" onload="resizeImage( this )" alt="Display Certain Categories in a Dropdown Menu" /&gt;&lt;/p&gt;
&lt;p&gt;Some blogs have a lot of categories which they can&amp;#8217;t display in their sidebar. Or some bloggers do not want to take up a lot of space displaying categories. This option allows them to have a select menu, dropdown menu, for categories. See &lt;a href="http://codex.wordpress.org/Template_Tags/wp_dropdown_categories" target="_blank"&gt;WordPress Codex&lt;/a&gt; for details.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;form action=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;/&amp;quot; method=&amp;quot;get&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
$select = wp_dropdown_categories('show_option_none=Select Category&amp;amp;show_count=1&amp;amp;orderby=name&amp;amp;echo=0&amp;amp;selected=6');&lt;br /&gt;
$select = preg_replace(&amp;quot;#&amp;lt;select([^&amp;gt;]*)&amp;gt;#&amp;quot;, &amp;quot;&amp;lt;select$1 onchange='return this.form.submit()'&amp;gt;&amp;quot;, $select);&lt;br /&gt;
echo $select;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;noscript&amp;gt;&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;View&amp;quot; /&amp;gt;&amp;lt;/noscript&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;h4&gt;32. Show Category Icons&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/categoryhacks/caticons.gif" onload="resizeImage( this )" alt="Show Category Icons" /&gt;&lt;/p&gt;
&lt;p&gt;Pictures make a site more lively which is a given which is why blogger might want to associate pictures with their category. This plugin lets you associate a specific icon of your choice to a designated category. You can use this plugin to list categories by icon with or without names, and much more.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://wordpress.org/extend/plugins/category-icons/" target="_blank"&gt;Download this Plugin&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;33. Display the most Recent Post from a Specific Category&lt;/h4&gt;
&lt;p&gt;Did you see sites with a magazine style theme who are displaying posts from a specific category. Sometimes only the most recent post. Well you can do this too easily.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    &amp;lt;?php&lt;br /&gt;
    query_posts('showposts=1&amp;amp;cat=3');&lt;br /&gt;
    while(have_posts()) : the_post();&lt;br /&gt;
    ?&amp;gt;&lt;br /&gt;
    &amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;&amp;lt;?php the_content(); ?&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/ul&amp;gt;&lt;br /&gt;
    &amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;/ul&amp;gt;&lt;br /&gt;
    &amp;lt;?php endwhile; ?&amp;gt; &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Add the above code anywhere you like in the template. Make sure you change the category ID and you can change the number of posts displayed as well if you want.&lt;/p&gt;
&lt;h4&gt;34. &lt;a href="http://wordpress.org/extend/plugins/future-posts-calendar/" rel="nofollow" target="_blank"&gt;Future Post Calendar&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;This plugin adds a simple month-by-month calendar that shows all the months you have future posts for (and the current month no matter what), it highlights the days you have posts for, and as an added bonus if you click a day the Post Timestamp boxes change to that day, month and year.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/multiauthor/futurepostcalendar.gif" onload="resizeImage( this )" alt="Future Post Calendar" /&gt;&lt;/p&gt;
&lt;h4&gt;35. Modify Excerpt Length and More Tags&lt;/h4&gt;
&lt;p&gt;WordPress lets you display Excerpts, but up until version 2.9 you could not control the excerpt length. With the following code, you can increase the length from default 55 words to as many words as you like. Open your &lt;em&gt;functions.php&lt;/em&gt; file and add the follwowing codes in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    // Changing excerpt length&lt;br /&gt;
    function new_excerpt_length($length) {&lt;br /&gt;
    return 100;&lt;br /&gt;
    }&lt;br /&gt;
    add_filter('excerpt_length', 'new_excerpt_length');&lt;/p&gt;
&lt;p&gt;    // Changing excerpt more&lt;br /&gt;
    function new_excerpt_more($more) {&lt;br /&gt;
    return '%u2026';&lt;br /&gt;
    }&lt;br /&gt;
    add_filter('excerpt_more', 'new_excerpt_more');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Change the 100 word limit to the count that you desire.&lt;/p&gt;
&lt;h4&gt;36. Display Author&amp;#8217;s Twitter and Facebook Information on their Profile Page&lt;/h4&gt;
&lt;p&gt;WordPress has fields for fields for author contacts, but it has not been updated in ages. So by default you do not have an ability to add author&amp;#8217;s twitter or facebook. With this hack you can add this information on their profile page.&lt;/p&gt;
&lt;p&gt;First open your functions.php and paste the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    &amp;lt;?php&lt;br /&gt;
    function my_new_contactmethods( $contactmethods ) {&lt;br /&gt;
    // Add Twitter&lt;br /&gt;
    $contactmethods['twitter'] = 'Twitter';&lt;br /&gt;
    //add Facebook&lt;br /&gt;
    $contactmethods['facebook'] = 'Facebook';&lt;/p&gt;
&lt;p&gt;    return $contactmethods;&lt;br /&gt;
    }&lt;br /&gt;
    add_filter('user_contactmethods','my_new_contactmethods',10,1);&lt;br /&gt;
    ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The above code will add two extra fields on your user-edit page named twitter and Facebook. You can display the code with the following code in your &lt;em&gt;author.php&lt;/em&gt; file.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php echo $curauth-&amp;gt;twitter; ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Source: &lt;a href="http://yoast.com/user-contact-fields-wp29/" rel="nofollow" target="_blank"&gt;Joost De Valk&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;37. &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/" target="_blank"&gt;Create a Contributors Page that lists Author with Avatars and Other Details&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-an-author-list-with-avatars-in-wordpress-contributors-page/" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/blogposts/contirbutorspageex.gif" onload="resizeImage( this )" alt="Create Author List with Avatars and Other Details" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Do you run a multi-author blog? Do you want to create a content-rich contributors page. This tutorial is just for you.&lt;/p&gt;
&lt;h4&gt;38. &lt;a href="http://www.wpbeginner.com/plugins/how-to-display-twitter-avatars-in-wordpress-comments/" target="_blank"&gt;Display Twitter Avatars in Comments&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;You probably have seen many sites using gravatars in comments because that is built-in. But there are some sites that are using twitter avatars, and if you are wondering how they are doing it then this trick will help you.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/twittar.gif" onload="resizeImage( this )" alt="Twitter Avatars in WordPress Comments" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/plugins/how-to-display-twitter-avatars-in-wordpress-comments/" target="_blank"&gt;Download the Plugin and follow this article for the instructions.&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;39. &lt;a href="http://wordpress.org/extend/plugins/business-directory/" rel="nofollow" target="_blank"&gt;Create a Business Directory using WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://wordpress.org/extend/plugins/business-directory/" rel="nofollow" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/usesofwp/businessdir.gif" onload="resizeImage( this )" alt="Create a Business Directory Using WordPress" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This plugin lets you create a business/web directory which allows users to submit their links or other information.&lt;/p&gt;
&lt;h4&gt;40. &lt;a href="http://www.freshlabs.de/journal/archives/2006/10/wordpress-plugin-simile-timeline/" rel="nofollow" target="_blank"&gt;Create a SIMILE Timeline using WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.freshlabs.de/journal/archives/2006/10/wordpress-plugin-simile-timeline/" rel="nofollow" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/usesofwp/timeline.gif" onload="resizeImage( this )" alt="Create a Timeline Using WordPress" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;41. Display Breadcrumb Navigation in WordPress&lt;/h4&gt;
&lt;p&gt;Have you seen sites that have a breadcrumb like ebay? Did you want to do it on your site? If you do then this plugin is just right for you. It has plenty of SEO advantage and it is extremely helpful to users.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/" rel="nofollow" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/blogposts/breadcrumb.gif" onload="resizeImage( this )" alt="Display Breadcrumb Navigation in WordPress" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;42. &lt;a href="http://www.wpbeginner.com/wp-tutorials/excellent-tutorials-to-utilize-the-power-of-wordpress-and-facebook/" target="_blank"&gt;Create Your Own Facebook Application for Your WordPress Site&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/excellent-tutorials-to-utilize-the-power-of-wordpress-and-facebook/" target="_blank"&gt;&lt;img src="http://www.wpbeginner.com/facebook/previewapp.gif" onload="resizeImage( this )" alt="Facebook Application for Your WordPress Site" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Did you ever want to utilize the power of Facebook by creating your own Application? Well WordPress lets you create an application for your blog. Follow this tutorial and utilize the power of facebook.&lt;/p&gt;
&lt;h4&gt;43. Display Most Recent Comments with Gravatars&lt;/h4&gt;
&lt;p&gt;Have you seen sites that display most recent comments in their sidebar with user gravatars. Well this can be done easily with these codes. Simply paste the following code anywhere you want to display the most recent comments.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
$query = &amp;quot;SELECT * from $wpdb-&amp;gt;comments WHERE comment_approved= '1'&lt;br /&gt;
ORDER BY comment_date DESC LIMIT 0 ,5&amp;quot;;&lt;br /&gt;
$comments = $wpdb-&amp;gt;get_results($query);&lt;/p&gt;
&lt;p&gt;if ($comments) {&lt;br /&gt;
    echo '&amp;lt;ul&amp;gt;';&lt;br /&gt;
    foreach ($comments as $comment) {&lt;br /&gt;
        $url = '&amp;lt;a href=&amp;quot;'. get_permalink($comment-&amp;gt;comment_post_ID).'#comment-'.$comment-&amp;gt;comment_ID .'&amp;quot; title=&amp;quot;'.$comment-&amp;gt;comment_author .' | '.get_the_title($comment-&amp;gt;comment_post_ID).'&amp;quot;&amp;gt;';&lt;br /&gt;
        echo '&amp;lt;li&amp;gt;';&lt;br /&gt;
        echo '&amp;lt;div class=&amp;quot;img&amp;quot;&amp;gt;';&lt;br /&gt;
        echo $url;&lt;br /&gt;
        echo get_avatar( $comment-&amp;gt;comment_author_email, $img_w);&lt;br /&gt;
        echo '&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;';&lt;/p&gt;
&lt;p&gt;        echo '&amp;lt;div class=&amp;quot;txt&amp;quot;&amp;gt;Par: ';&lt;br /&gt;
        echo $url;&lt;br /&gt;
        echo $comment-&amp;gt;comment_author;&lt;br /&gt;
        echo '&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
        echo '&amp;lt;/li&amp;gt;';&lt;br /&gt;
    }&lt;br /&gt;
    echo '&amp;lt;/ul&amp;gt;';&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;To get more or less than 5 comments, change the number 5 on line 2. &lt;/p&gt;
&lt;p&gt;Source: &lt;a href="http://www.wprecipes.com/display-most-recent-comments-with-gravatar" target="_blank"&gt;WPRecipes&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;44. Greet Each User with Appropriate Message&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/wpgreetbox1.gif" onload="resizeImage( this )" alt="Greet Each User with Appropriate Message" /&gt;&lt;/p&gt;
&lt;p&gt;If you like to read blogs, then you must have seen this on at least one blog. You can select to display a specific message to different users depending on the source they arrived at your blog. So for example, if someone comes to your blog via twitter, this plugin will show them a different text.&lt;/p&gt;
&lt;p&gt;Download this Plugin: &lt;a href="http://wordpress.org/extend/plugins/wp-greet-box/" rel="nofollow" target="_blank"&gt;WP Greet Box&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;45. &lt;a href="http://www.wpbeginner.com/wp-themes/social-media-cheat-sheet-for-wordpress/" target="_blank"&gt;Display Different Social Media Submit Buttons&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Many if not all blogs has some type of social media integration on their site. Most sites though have different social media sites button on their single pages, so they can get more votes. There are many plugins that can add this feature in your WordPress Blog. But this can also be done manually. Anyone who is curious should use &lt;a href="http://www.wpbeginner.com/wp-themes/social-media-cheat-sheet-for-wordpress/" target="_blank"&gt;this social media theme guide&lt;/a&gt; as a reference.&lt;/p&gt;
&lt;h4&gt;46. &lt;a href="http://wordpress.org/extend/plugins/wordpress-comment-digg/" rel="nofollow" target="_blank"&gt;Digg/Bury Blog Comments&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/diggcomment.gif" onload="resizeImage( this )" alt="Digg-Bury Blog Comments" /&gt;&lt;/p&gt;
&lt;p&gt;Did you ever wish that there was some type of voting system on your blog comments. Well this plugin has just what you want. It allows users to vote up or vote down the comment.&lt;/p&gt;
&lt;h4&gt;47. Redirect Your User&amp;#8217;s Attention&lt;/h4&gt;
&lt;p&gt;Have you been to a WordPress site where you make your first comment and you are redirected to another page? If not, then you are at one right now. We redirect our first commentators to a &lt;a href="http://www.wpbeginner.com/thank-you-for-being-a-contributing-user/" target="_blank"&gt;Thank You Page&lt;/a&gt;. But this Plugin can be used for the sake of advertisement also if you want your users to know about your new product. Simply Download a plugin called &lt;a href="http://wordpress.org/extend/plugins/comment-redirect/" rel="nofollow" target="_blank"&gt;Comment Redirect&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/commentredirect.gif" onload="resizeImage( this )" alt="Comment Redirect" /&gt;&lt;/p&gt;
&lt;h4&gt;48. &lt;a href="http://www.animhut.com/tuts/add-twitter-id-field-to-comment-form-in-5-easy-steps/" rel="nofollow" target="_blank"&gt;Add Twitter ID Field in WordPress Comment Form&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/mostwanted/twittercomment.gif" onload="resizeImage( this )" alt="Add Twitter Field in WordPress Comment Form" /&gt;&lt;/p&gt;
&lt;p&gt;Many top sites including Mashable and Techcrunch are doing this. They have an additional twitter field in their comment forms. So users can put their twitter profile if they want to. This can be done in 5 easy steps if you follow the tutorial by clicking on the hack title.&lt;/p&gt;
&lt;h4&gt;49. Display Guest Author&amp;#8217;s Name via Custom Field&lt;/h4&gt;
&lt;p&gt;Many Blogs are now having guest posts on their site. Some of these guest authors are one-time only authors, so there is no point in creating a separate profile for them just so you can display their name in the post. The smarter way to do this is by using the following code.&lt;/p&gt;
&lt;p&gt;Open you single.php, or page.php in your template and add the following code where you display the author name:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php $author = get_post_meta($post-&amp;gt;ID, &amp;quot;guest-author&amp;quot;, true);&lt;br /&gt;
if ($author != &amp;quot;&amp;quot;) {&lt;br /&gt;
    echo $author;&lt;br /&gt;
} else {&lt;br /&gt;
    the_author();&lt;br /&gt;
}  ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code will look for the custom field called guest-author if it is found, then it will display that name, otherwise it will display the_author function meaning the person who actually published it meaning you. &lt;/p&gt;
&lt;p&gt;Note: You might have to remove the original the_author function before you place this.&lt;/p&gt;
&lt;p&gt;Source: &lt;a href="http://www.wprecipes.com/rewrite-author-name-with-custom-field" rel="nofollow" target="_blank"&gt;WPRecipes&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;50. Display Most Recent Tweet in WordPress&lt;/h4&gt;
&lt;p&gt;Twitter is getting very famous among bloggers. Many bloggers are now displaying their most recent tweet on their blog. If you want to display your most recent tweet on your blog simply place this code where you want to display it in your WordPress theme.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
$username = &amp;quot;TwitterUsername&amp;quot;; // Your twitter username.&lt;br /&gt;
$prefix = &amp;quot;&amp;quot;; // Prefix &amp;#8211; some text you want displayed before your latest tweet.&lt;br /&gt;
$suffix = &amp;quot;&amp;quot;; // Suffix &amp;#8211; some text you want display after your latest tweet.&lt;br /&gt;
$feed = &amp;quot;http://search.twitter.com/search.atom?q=from:&amp;quot; . $username . &amp;quot;&amp;amp;rpp=1&amp;quot;;&lt;/p&gt;
&lt;p&gt;function parse_feed($feed) {&lt;br /&gt;
$stepOne = explode(&amp;quot;&amp;lt;content type=\&amp;quot;html\&amp;quot;&amp;gt;&amp;quot;, $feed);&lt;br /&gt;
$stepTwo = explode(&amp;quot;&amp;lt;/content&amp;gt;&amp;quot;, $stepOne[1]);&lt;br /&gt;
$tweet = $stepTwo[0];&lt;br /&gt;
$tweet = str_replace(&amp;quot;&amp;amp;lt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot;, $tweet);&lt;br /&gt;
$tweet = str_replace(&amp;quot;&amp;amp;gt;&amp;quot;, &amp;quot;&amp;gt;&amp;quot;, $tweet);&lt;br /&gt;
return $tweet;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;$twitterFeed = file_get_contents($feed);&lt;br /&gt;
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);&lt;br /&gt;
?&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Make sure to change the username in the first line.&lt;/p&gt;
&lt;h4&gt;51. &lt;a href="http://www.wpbeginner.com/beginners-guide/must-see-seo-guide-for-all-wordpress-bloggers/" target="_blank"&gt;Improve Your WordPress SEO&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;This is a detailed guide that will help you improve your WordPress SEO. We compiled it a while back and it has received many positive reviews from users.&lt;/p&gt;
&lt;h4&gt;52. &lt;a href="http://lesterchan.net/wordpress/readme/wp-email.html" rel="nofollow" target="_blank"&gt;Add Email This Article Option to Your WordPress Posts&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Have you seen a site that gives you an option to email the article to your friend. If you have read a newspaper online, then you have. WordPress has a similar feature for the posts. You can add it by simply enabling a plugin called &lt;a href="http://lesterchan.net/wordpress/readme/wp-email.html" rel="nofollow" target="_blank"&gt;Email This&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/email-this.gif" onload="resizeImage( this )" alt="Email This Article Plugin for WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;Once you have installed and updated the settings to your desire, simiply add this code in your single.php inside the loop.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if(function_exists('wp_email')) { email_link(); } ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code will put a printer icon / link to every post page.&lt;/p&gt;
&lt;h4&gt;53. &lt;a href="http://www.wpbeginner.com/showcase/best-of-best-wordpress-404-error-page-designs/" target="_blank"&gt;Create a Resourceful 404 Page Design&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/404pages/catalyst.gif" onload="resizeImage( this )" alt="Best 404 Page Design" /&gt;&lt;/p&gt;
&lt;p&gt;The above tutorial lists some of the elements that you should have in a 404 page design.&lt;/p&gt;
&lt;h4&gt;54. &lt;a href="http://wordpress.org/extend/plugins/wp-typography/" rel="nofollow" target="_blank"&gt;Improve Typography in WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;Have you ever wished that you can have rounded quotes, show elipses, your hyphens don&#8217;t get mixed up, well this is your lucky day because it can be done with a plugin called &lt;a href="http://wordpress.org/extend/plugins/wp-typography/" rel="nofollow" target="_blank"&gt;WP-Typography&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/wptypography.gif" onload="resizeImage( this )" alt="Web Typography Plugin for WordPress" /&gt;&lt;/p&gt;
&lt;h4&gt;55. &lt;a href="http://armeda.com/how-to-create-a-jquery-carousel-with-WordPress-posts/" rel="nofollow" target="_blank"&gt;Create a jQuery Carousel in WordPress&lt;/a&gt;&lt;/h4&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/jquerypower/carousel.gif" onload="resizeImage( this )" alt="jQuery Carousel in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;A great tutorial that shows you how to display your WordPress posts in a Carousel.&lt;/p&gt;
&lt;p&gt;We hoped that you enjoyed this long and resourceful article. If you like it please retweet, and share it with your friends on Facebook.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/showcase/best-wordpress-tutorials-of-2009/" title="Permanent Link: Best WordPress Tutorials of 2009" rel="bookmark" target="_blank"&gt;Best WordPress Tutorials of 2009&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=DDOO_Z9ikfA:4ajOS2j-sq0:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=DDOO_Z9ikfA:4ajOS2j-sq0:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=DDOO_Z9ikfA:4ajOS2j-sq0:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/DDOO_Z9ikfA" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1192</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/DDOO_Z9ikfA/" rel="alternate"/>
      <title>55+ Most Wanted WordPress Tips, Tricks, and Hacks</title>
      <updated>2010-01-25T23:52:50+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>The Right Way to Remove WordPress Version Number</title>
    <updated>2010-01-25T20:01:49+00:00</updated>
    <published>2010-01-23T15:14:38+00:00</published>
    <id>planetaki.com:2185:post:60403642</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/UAQ-_utOBlM/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60403642" rel="full"/>
    <summary type="html">&lt;p&gt;By default WordPress leaves it&#8217;s footprints on your site for the sake of tracking. That is how we know that WordPress is the World&#8217;s largest Blogging platform. But sometimes this footprint might be a security leak on your site if you are not running the most updated version of WordPress. Because you are providing the hacker with the useful information by telling them which version you are running. &lt;/p&gt;&lt;p&gt;If you are running the most up to date version of WordPress, which we recommend you do, then you do not have to worry about this tutorial at all. But if for some reason you are not, then it is in your best interest to follow this tutorial.&lt;/p&gt;&lt;p&gt;There are many ways to get rid of the WordPress version number from your header. But there is only one correct way to do this.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;By default WordPress leaves it&amp;#8217;s footprints on your site for the sake of tracking. That is how we know that WordPress is the World&amp;#8217;s largest Blogging platform. But sometimes this footprint might be a security leak on your site if you are not running the most updated version of WordPress. Because you are providing the hacker with the useful information by telling them which version you are running. &lt;/p&gt;
&lt;p&gt;If you are running the most up to date version of WordPress, which we recommend you do, then you do not have to worry about this tutorial at all. But if for some reason you are not, then it is in your best interest to follow this tutorial.&lt;/p&gt;
&lt;p&gt;There are many ways to get rid of the WordPress version number from your header. But there is only one correct way to do this.&lt;/p&gt;
&lt;p&gt;Some sites will recommend that you open your &lt;em&gt;header.php&lt;/em&gt; file and get rid of this code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;meta name=&amp;quot;generator&amp;quot; content=&amp;quot;WordPress &amp;lt;?php bloginfo('version'); ?&amp;gt;&amp;quot; /&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Or others will recommend that you open your &lt;em&gt;functions.php&lt;/em&gt; and add the following function:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;remove_action('wp_head', 'wp_generator');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;But both of these ways are offering you an incomplete solution. These ways will simply remove the WordPress version number from your head area. So if someone views your website source, they will not be able to see the version.&lt;/p&gt;
&lt;p&gt;But a smart hacker who knows about WordPress will simply go to your RSS Feeds, and they will find your version number there because neither of the above codes will remove that number.&lt;/p&gt;
&lt;p&gt;In order for you to completely remove your WordPress version number from both your head file and RSS feeds, you will need to add the following function to your &lt;em&gt;functions.php&lt;/em&gt; file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function wpbeginner_remove_version() {&lt;br /&gt;
     return '';&lt;br /&gt;
}&lt;br /&gt;
add_filter('the_generator', 'wpbeginner_remove_version');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;By adding this version, you will remove the WordPress version number from all different areas on your site. Above is the right way to remove WordPress Version number.&lt;/p&gt;
&lt;p&gt;Note: We still recommend that you update to the latest version of WordPress because that is the only guaranteed way to keep your blog protected.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/plugins/protect-wordpress-against-malicious-url-requests/" title="Permanent Link: Protect WordPress Against Malicious URL Requests" rel="bookmark" target="_blank"&gt;Protect WordPress Against Malicious URL Requests&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/11-vital-tips-and-hacks-to-protect-your-wordpress-admin-area/" title="Permanent Link: 13 Vital Tips and Hacks to Protect Your WordPress Admin Area" rel="bookmark" target="_blank"&gt;13 Vital Tips and Hacks to Protect Your WordPress Admin Area&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/protect-your-admin-folder-in-wordpress-by-limiting-access-in-htaccess/" title="Permanent Link: Protect Your Admin folder in WordPress by Limiting Access in .htaccess" rel="bookmark" target="_blank"&gt;Protect Your Admin folder in WordPress by Limiting Access in .htaccess&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=UAQ-_utOBlM:AggcxUpYFcs:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=UAQ-_utOBlM:AggcxUpYFcs:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=UAQ-_utOBlM:AggcxUpYFcs:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/UAQ-_utOBlM" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1189</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/UAQ-_utOBlM/" rel="alternate"/>
      <title>The Right Way to Remove WordPress Version Number</title>
      <updated>2010-01-25T20:01:49+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Add Post Thumbnails in WordPress</title>
    <updated>2010-01-23T17:47:34+00:00</updated>
    <published>2010-01-18T13:06:56+00:00</published>
    <id>planetaki.com:2185:post:60126147</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/paII-58tDUg/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/60126147" rel="full"/>
    <summary type="html">&lt;p&gt;Post Thumbnails are getting more popular every day. Many magazine themes associate an image with a specific post which they later display on either homepage or on the post page. We display a thumbnail with our posts on both the post page and the category page. In older versions, this functionality was obtained with the use of custom-field method which was not very user friendly. Thanks to WordPress Core Developers along with &lt;a href="http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/" target="_blank"&gt;many notable features in WordPress 2.9&lt;/a&gt;, this function was also added to the core.&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.wpbeginner.com/wp2-9/postthumbnail.gif" onload="resizeImage( this )" alt="Post Thumbnails in WordPress"/&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Post Thumbnails are getting more popular every day. Many magazine themes associate an image with a specific post which they later display on either homepage or on the post page. We display a thumbnail with our posts on both the post page and the category page. In older versions, this functionality was obtained with the use of custom-field method which was not very user friendly. Thanks to WordPress Core Developers along with &lt;a href="http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/" target="_blank"&gt;many notable features in WordPress 2.9&lt;/a&gt;, this function was also added to the core.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/wp2-9/postthumbnail.gif" onload="resizeImage( this )" alt="Post Thumbnails in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;You will see an option like this in the sidebar of your Write Post Panel in WordPress Dashboard. Even though this functionality is added to the core, not every user will see this option in the sidebar of their write post panel. This is one of those functions that can be enabled only if the theme supports it. Older free themes might not support it, so you would need to ask the developer to update, or you can do it yourself by following this tutorial.&lt;/p&gt;
&lt;p&gt;First you will need to open your &lt;em&gt;functions.php&lt;/em&gt; file in your themes folder and paste the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;add_theme_support( 'post-thumbnails' );&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code will enable theme support for both posts and pages. So now you will be able to see an option in your dashboard. But it will not display in your themes because we have not added the code in the theme yet.&lt;/p&gt;
&lt;p&gt;You can display the thumbnail anywhere inside &lt;a href="http://codex.wordpress.org/The_Loop" rel="nofollow" target="_blank"&gt;the Loop&lt;/a&gt; by using this code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php the_post_thumbnail(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;That was the basic function, but if you want to get more advanced such as specifying post thumbnail size then you will just need to open your &lt;em&gt;functions.php&lt;/em&gt; file and paste the code like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;add_theme_support( 'post-thumbnails' );&lt;br /&gt;
set_post_thumbnail_size( 50, 50, true );&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The dimensions are set in this order: width x height and these are pixels. &lt;/p&gt;
&lt;p&gt;This is broken down version of the full functionality of this feature. We tried to keep it simple, so every one can follow it. If you want more information on this functionality then check out:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/" rel="nofollow" target="_blank"&gt;Mark Jaquith&amp;#8217;s Article on Post Thumbnails&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://codex.wordpress.org/Template_Tags/the_post_thumbnail" rel="nofollow" target="_blank"&gt;WordPress Codex&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=paII-58tDUg:b9xcI2VJkYY:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=paII-58tDUg:b9xcI2VJkYY:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=paII-58tDUg:b9xcI2VJkYY:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/paII-58tDUg" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1185</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/paII-58tDUg/" rel="alternate"/>
      <title>How to Add Post Thumbnails in WordPress</title>
      <updated>2010-01-23T17:47:34+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Display Post Excerpts in WordPress Themes</title>
    <updated>2010-01-17T15:50:34+00:00</updated>
    <published>2010-01-17T12:44:43+00:00</published>
    <id>planetaki.com:2185:post:59148435</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/YPYUry-ItBw/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/59148435" rel="full"/>
    <summary type="html">&lt;p&gt;Some of our users wanted us to post a tutorial on how to display Post Excerpts in WordPress Themes. This is a very simple tutorial that anyone can implement and take advantage of this built-in feature. The benefit of implementing this tutorial is that it decreases page load time and it increases the pageview count.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;How does it Decrease Page Load Time?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you write long posts like &lt;a href="http://www.wpbeginner.com/showcase/best-practices-of-contact-form-page-designs-in-wordpress/" target="_blank"&gt;best practices of contact forms&lt;/a&gt; or &lt;a href="http://www.wpbeginner.com/showcase/top-10-must-have-iphone-apps-for-bloggers/" target="_blank"&gt;must have iphone apps for bloggers&lt;/a&gt; which has a lot of images, then having them load on one page can significantly impact your page load time. By adding this technique, you can simply show a mini description of the article and let user view the post on single post page.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Some of our users wanted us to post a tutorial on how to display Post Excerpts in WordPress Themes. This is a very simple tutorial that anyone can implement and take advantage of this built-in feature. The benefit of implementing this tutorial is that it decreases page load time and it increases the pageview count.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How does it Decrease Page Load Time?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If you write long posts like &lt;a href="http://www.wpbeginner.com/showcase/best-practices-of-contact-form-page-designs-in-wordpress/" target="_blank"&gt;best practices of contact forms&lt;/a&gt; or &lt;a href="http://www.wpbeginner.com/showcase/top-10-must-have-iphone-apps-for-bloggers/" target="_blank"&gt;must have iphone apps for bloggers&lt;/a&gt; which has a lot of images, then having them load on one page can significantly impact your page load time. By adding this technique, you can simply show a mini description of the article and let user view the post on single post page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How does it Increase Page View count?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Sometimes users just read the post on the category page if you don&amp;#8217;t use the excerpt. By adding it this way, they will go to the original post. That is 2 page views instead of 1. It also encourages users to make a comment on the post because comment form is also on this page and they don&amp;#8217;t need to load a separate page to make a comment.&lt;/p&gt;
&lt;h4&gt;Tutorial&lt;/h4&gt;
&lt;p&gt;Open your &lt;em&gt;index.php&lt;/em&gt; file, &lt;em&gt;archive.php&lt;/em&gt; file, and &lt;em&gt;category.php&lt;/em&gt; file. Now some of you might not have all these files in your template, so just open the ones that you do have.&lt;/p&gt;
&lt;p&gt;Find the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php the_content(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;And replace it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now you can write custom excerpts for your posts from your WordPress admin panel and have it displayed in your theme.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/addexcerpt.gif" onload="resizeImage( this )" alt="Add Post Excerpts in WordPress" /&gt;&lt;/p&gt;
&lt;p&gt;If you do not write a custom excerpt, then WordPress automatically takes the first 55 words from your post and put them in an excerpt with elipses and display it. You can change the word limit starting from WordPress 2.9. If you want to change the word limit open your functions.php file and add the following function:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;    // Changing excerpt length&lt;br /&gt;
    function new_excerpt_length($length) {&lt;br /&gt;
    return 100;&lt;br /&gt;
    }&lt;br /&gt;
    add_filter('excerpt_length', 'new_excerpt_length');&lt;/p&gt;
&lt;p&gt;    // Changing excerpt more&lt;br /&gt;
    function new_excerpt_more($more) {&lt;br /&gt;
    return '%u2026';&lt;br /&gt;
    }&lt;br /&gt;
    add_filter('excerpt_more', 'new_excerpt_more');&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;If you want to see this code working live, just click on any of our categories from the navigation menu and you will see that we do not display full posts.&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YPYUry-ItBw:4F_S349vXdE:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=YPYUry-ItBw:4F_S349vXdE:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=YPYUry-ItBw:4F_S349vXdE:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/YPYUry-ItBw" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1182</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/YPYUry-ItBw/" rel="alternate"/>
      <title>How to Display Post Excerpts in WordPress Themes</title>
      <updated>2010-01-17T15:50:34+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>I Have a Bone to Pick</title>
    <updated>2010-01-16T04:00:28+00:00</updated>
    <published>2010-01-16T03:07:59+00:00</published>
    <id>planetaki.com:2185:post:58989186</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/4LorPoqUGIg/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/58989186" rel="full"/>
    <summary type="html">&lt;p&gt;&lt;img title="Scion xB" class="aligncenter size-full wp-image-1963" src="http://www.enkayblog.com/wp-content/scion.jpg" height="329" onload="resizeImage( this )" alt="Scion xB" width="520"/&gt;&lt;/p&gt;&lt;p&gt;As you all know, I am a big car guy and I have test driven a wide variety of cars and I generally critique cars &#8211; whether I like them or dislike them &#8211; even if I own them.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;&lt;img title="Scion xB" class="aligncenter size-full wp-image-1963" src="http://www.enkayblog.com/wp-content/scion.jpg" height="329" onload="resizeImage( this )" alt="Scion xB" width="520" /&gt;
&lt;div align="center"&gt;&lt;/div&gt;
&lt;p&gt;As you all know, I am a big car guy and I have test driven a wide variety of cars and I generally critique cars &amp;#8211; whether I like them or dislike them &amp;#8211; even if I own them.&lt;/p&gt;
&lt;p&gt;Now before I start talking about the image above, I just want to clarify that I own a Toyota and I actually like the Scion lineup. The problem that I have is I wonder, I really really wonder why Toyota &amp;#8212; or better said, the designers of the xB decided that it might be better to design the car with only one reverse light as you can see from the image above.&lt;/p&gt;
&lt;p&gt;As you probably know, most cars have two lights that turn on when you switch to reverse. Well, in the Scion xB you&amp;#8217;d think something was wrong when only one light would turn on &amp;#8211; which is on the lowest left hand corner. I just think its a really weird set up and its sort of a design flaw in my opinion.&lt;/p&gt;
&lt;p&gt;Honestly, I don&amp;#8217;t even own an xB and as a consumer I feel that I&amp;#8217;m getting jipped off! I just thought it would be interesting today to talk about some things that interest me personally &amp;#8211; it might not be a big deal but I still think its something I should get off my chest! &lt;/p&gt;
&lt;p&gt;I hope you liked this short post and I just wanted to see what your opinions would be about this &amp;#8211; do you think there is a specific reason why there is only one reverse light? or is that just something that needs to be fixed? I just want to see if anyone else thinks this is as weird as I do. Have a good weekend!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=4LorPoqUGIg:qHUoQ4qeooA:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=4LorPoqUGIg:qHUoQ4qeooA:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=4LorPoqUGIg:qHUoQ4qeooA:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=4LorPoqUGIg:qHUoQ4qeooA:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=4LorPoqUGIg:qHUoQ4qeooA:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=4LorPoqUGIg:qHUoQ4qeooA:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=4LorPoqUGIg:qHUoQ4qeooA:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;/p&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1964</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/4LorPoqUGIg/" rel="alternate"/>
      <title>I Have a Bone to Pick</title>
      <updated>2010-01-16T04:00:28+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Adding a Custom Dashboard Logo in WordPress for Branding</title>
    <updated>2010-01-17T12:44:50+00:00</updated>
    <published>2010-01-15T13:49:14+00:00</published>
    <id>planetaki.com:2185:post:59134265</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/rpd1VoRxllY/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/59134265" rel="full"/>
    <summary type="html">&lt;p&gt;When creating themes for clients, you might want to provide them with some administrative branding. The first and easiest way to do that is by replacing the WordPress logo with your Custom Logo in the admin dashboard.&lt;/p&gt;&lt;p&gt;First you would need to create an image that has the dimensions of 30px wide and 31px tall. This image would need to be transparent either .gif or .png. The image matte color must match the background color which has the hex value of #464646.&lt;/p&gt;&lt;p&gt;Save that image in your theme&#8217;s image folder (/wp-content/themes/theme-name/images) and name it whatever you like. In this example we will be naming it custom-logo.gif.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;When creating themes for clients, you might want to provide them with some administrative branding. The first and easiest way to do that is by replacing the WordPress logo with your Custom Logo in the admin dashboard.&lt;/p&gt;
&lt;p&gt;First you would need to create an image that has the dimensions of 30px wide and 31px tall. This image would need to be transparent either .gif or .png. The image matte color must match the background color which has the hex value of #464646.&lt;/p&gt;
&lt;p&gt;Save that image in your theme&amp;#8217;s image folder (/wp-content/themes/theme-name/images) and name it whatever you like. In this example we will be naming it custom-logo.gif.&lt;/p&gt;
&lt;p&gt;Now open your &lt;em&gt;functions.php&lt;/em&gt; file located in your themes folder and add the following function in there:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;//hook the administrative header output&lt;br /&gt;
add_action('admin_head', 'my_custom_logo');&lt;/p&gt;
&lt;p&gt;function my_custom_logo() {&lt;br /&gt;
   echo '&lt;br /&gt;
      &amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br /&gt;
         #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/custom-logo.gif) !important; }&lt;br /&gt;
      &amp;lt;/style&amp;gt;&lt;br /&gt;
   ';&lt;br /&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;By adding this function, you are telling WordPress to add a function my_custom_logo in the field admin_head. This function will replace the original WordPress &amp;#8216;W&amp;#8217; with your custom logo.&lt;/p&gt;
&lt;p&gt;This is how it would look:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/customwpdashboardlogo.gif" onload="resizeImage( this )" alt="Custom Dashboard Logo in WordPress for Branding" /&gt;&lt;/p&gt;
&lt;p&gt;This trick is from Jacob Goldman&amp;#8217;s Article on &lt;a href="http://www.smashingmagazine.com/2009/12/14/advanced-power-tips-for-wordpress-template-developers-reloaded/" rel="nofollow" target="_blank"&gt;Smashing Magazine&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=rpd1VoRxllY:NRzcalyvZi0:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=rpd1VoRxllY:NRzcalyvZi0:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=rpd1VoRxllY:NRzcalyvZi0:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/rpd1VoRxllY" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1179</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/rpd1VoRxllY/" rel="alternate"/>
      <title>Adding a Custom Dashboard Logo in WordPress for Branding</title>
      <updated>2010-01-17T12:44:50+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Display an Author List with Avatars in WordPress Contributors Page</title>
    <updated>2010-01-15T14:44:59+00:00</updated>
    <published>2010-01-14T15:10:06+00:00</published>
    <id>planetaki.com:2185:post:58889625</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/Y4hwO31tdls/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/58889625" rel="full"/>
    <summary type="html">&lt;p&gt;While working on a client&#8217;s website, we realized that the built-in function for listing authors was not enough. We showed you &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-list-all-authors-from-your-blog-in-wordpress/" target="_blank"&gt;how to display all authors from your site&lt;/a&gt;, but that method was only good if you want a simple list to display in your sidebar. If you want to create a more content-rich and useful contributors page, then that function is useless.&lt;/p&gt;&lt;p&gt;In this article we will show you how you can create a contributors page which will display a list of authors with avatars or userphoto and any other information that you like. This tutorial is an &lt;strong&gt;intermediate level&lt;/strong&gt; tutorial.&lt;/p&gt;&lt;p&gt;First thing you need to do is &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/" target="_blank"&gt;create a custom page&lt;/a&gt; using this template.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;While working on a client&amp;#8217;s website, we realized that the built-in function for listing authors was not enough. We showed you &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-list-all-authors-from-your-blog-in-wordpress/" target="_blank"&gt;how to display all authors from your site&lt;/a&gt;, but that method was only good if you want a simple list to display in your sidebar. If you want to create a more content-rich and useful contributors page, then that function is useless.&lt;/p&gt;
&lt;p&gt;In this article we will show you how you can create a contributors page which will display a list of authors with avatars or userphoto and any other information that you like. This tutorial is an &lt;strong&gt;intermediate level&lt;/strong&gt; tutorial.&lt;/p&gt;
&lt;p&gt;First thing you need to do is &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-create-a-custom-page-in-wordpress/" target="_blank"&gt;create a custom page&lt;/a&gt; using this template.&lt;/p&gt;
&lt;p&gt;Then you will need to open &lt;em&gt;functions.php&lt;/em&gt; file in your themes folder and add the following code:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function contributors() {&lt;br /&gt;
global $wpdb;&lt;/p&gt;
&lt;p&gt;$authors = $wpdb-&amp;gt;get_results(&amp;quot;SELECT ID, user_nicename from $wpdb-&amp;gt;users ORDER BY display_name&amp;quot;);&lt;/p&gt;
&lt;p&gt;foreach($authors as $author) {&lt;br /&gt;
echo &amp;quot;&amp;lt;li&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('url').&amp;quot;/?author=&amp;quot;;&lt;br /&gt;
echo $author-&amp;gt;ID;&lt;br /&gt;
echo &amp;quot;\&amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
echo get_avatar($author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo '&amp;lt;div&amp;gt;';&lt;br /&gt;
echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('url').&amp;quot;/?author=&amp;quot;;&lt;br /&gt;
echo $author-&amp;gt;ID;&lt;br /&gt;
echo &amp;quot;\&amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
the_author_meta('display_name', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;/div&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;/li&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;By adding this function you are telling WordPress to create a function that will display author&amp;#8217;s name, and author&amp;#8217;s avatar. You can change the avatar to userphoto plugin setting by simply changing the following line:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;echo get_avatar($author-&amp;gt;ID);&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;and replacing it with:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;echo userphoto($author-&amp;gt;ID);&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can add more features to this function such as displaying author URL and other information from the profile by following the structure used.&lt;/p&gt;
&lt;p&gt;You would also need to add the following lines to your CSS file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;#authorlist li {&lt;br /&gt;
	clear: left;&lt;br /&gt;
	float: left;&lt;br /&gt;
	margin: 0 0 5px 0;&lt;br /&gt;
	}	&lt;/p&gt;
&lt;p&gt;#authorlist img.photo {&lt;br /&gt;
	width: 40px;&lt;br /&gt;
	height: 40px;&lt;br /&gt;
	float: left;&lt;br /&gt;
	}&lt;/p&gt;
&lt;p&gt;#authorlist div.authname {&lt;br /&gt;
	margin: 20px 0 0 10px;&lt;br /&gt;
	float: left;&lt;br /&gt;
	}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Once you are done adding the function, now you would need to call it in your page-template. Open the contributors.php file or whatever you name the file. Follow the same page template as your page.php and in the loop, just add this function instead of displaying the content:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;div id=&amp;quot;authorlist&amp;quot;&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;?php contributors(); ?&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This will provide you with a more content-rich contributors page. This trick is excellent for Multi-Author blogs.&lt;/p&gt;
&lt;p&gt;Now here is an example of how we used it:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/contirbutorspageex.gif" onload="resizeImage( this )" alt="Example of a Contributors Page with Author List and other Info" /&gt;&lt;/p&gt;
&lt;p&gt;If you want to have a contributors page with information like displayed in the example above, you will need to make a few changes to the original function. We have an example code that will get you exactly everything displayed in the image above.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;function contributors() {&lt;br /&gt;
global $wpdb;&lt;/p&gt;
&lt;p&gt;$authors = $wpdb-&amp;gt;get_results(&amp;quot;SELECT ID, user_nicename from $wpdb-&amp;gt;users WHERE display_name &amp;lt;&amp;gt; 'admin' ORDER BY display_name&amp;quot;);&lt;/p&gt;
&lt;p&gt;foreach ($authors as $author ) {&lt;/p&gt;
&lt;p&gt;echo &amp;quot;&amp;lt;li&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('url').&amp;quot;/author/&amp;quot;;&lt;br /&gt;
the_author_meta('user_nicename', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;/\&amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
echo get_avatar($author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo '&amp;lt;div&amp;gt;';&lt;br /&gt;
echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('url').&amp;quot;/author/&amp;quot;;&lt;br /&gt;
the_author_meta('user_nicename', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;/\&amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
the_author_meta('display_name', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;Website: &amp;lt;a href=\&amp;quot;&amp;quot;;&lt;br /&gt;
the_author_meta('user_url', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;/\&amp;quot; target='_blank'&amp;gt;&amp;quot;;&lt;br /&gt;
the_author_meta('user_url', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;Twitter: &amp;lt;a href=\&amp;quot;http://twitter.com/&amp;quot;;&lt;br /&gt;
the_author_meta('twitter', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;\&amp;quot; target='_blank'&amp;gt;&amp;quot;;&lt;br /&gt;
the_author_meta('twitter', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;br /&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('url').&amp;quot;/author/&amp;quot;;&lt;br /&gt;
the_author_meta('user_nicename', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;/\&amp;quot;&amp;gt;Visit&amp;amp;nbsp;&amp;quot;;&lt;br /&gt;
the_author_meta('display_name', $author-&amp;gt;ID);&lt;br /&gt;
echo &amp;quot;'s Profile Page&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;/div&amp;gt;&amp;quot;;&lt;br /&gt;
echo &amp;quot;&amp;lt;/li&amp;gt;&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This code is utilizing &lt;a href="http://www.wpbeginner.com/plugins/how-to-add-an-authors-photo-in-wordpress/" target="_blank"&gt;User Photo plugin&lt;/a&gt;. The twitter field is being displayed using the trick we mentioned in the article &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-authors-twitter-and-facebook-on-the-profile-page/" target="_blank"&gt;How to Display Author&amp;#8217;s Twitter and Facebook in the Profile page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The CSS for example would look like:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;#authorlist ul{&lt;br /&gt;
	list-style: none;&lt;br /&gt;
	width: 600px;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
#authorlist li {&lt;br /&gt;
	margin: 0 0 5px 0;&lt;br /&gt;
	list-style: none;&lt;br /&gt;
	height: 90px;&lt;br /&gt;
	padding: 15px 0 15px 0;&lt;br /&gt;
	border-bottom: 1px solid #ececec;&lt;br /&gt;
	}	&lt;/p&gt;
&lt;p&gt;#authorlist img.photo {&lt;br /&gt;
	width: 80px;&lt;br /&gt;
	height: 80px;&lt;br /&gt;
	float: left;&lt;br /&gt;
	margin: 0 15px 0 0;&lt;br /&gt;
	padding: 3px;&lt;br /&gt;
	border: 1px solid #ececec;&lt;br /&gt;
	}&lt;/p&gt;
&lt;p&gt;#authorlist div.authname {&lt;br /&gt;
	margin: 20px 0 0 10px;&lt;br /&gt;
	}
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can display more information if you like by using the advanced code as your guide.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://bavotasan.com/tutorials/how-to-display-an-author-list-with-avatars-in-wordpress/" rel="source" target="_blank"&gt;Source of this Function&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Y4hwO31tdls:MVCoqM3btsA:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=Y4hwO31tdls:MVCoqM3btsA:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=Y4hwO31tdls:MVCoqM3btsA:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/Y4hwO31tdls" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1172</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/Y4hwO31tdls/" rel="alternate"/>
      <title>How to Display an Author List with Avatars in WordPress Contributors Page</title>
      <updated>2010-01-15T14:44:59+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Shopping Around with UrbanStone</title>
    <updated>2010-01-14T01:23:26+00:00</updated>
    <published>2010-01-13T23:45:07+00:00</published>
    <id>planetaki.com:2185:post:58641082</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/l7F9Sp8lb5c/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/58641082" rel="full"/>
    <summary type="html">&lt;p&gt;Recently, I came across a very interesting review request that was actually through Twitter. Interestingly enough, the website is called UrbanStone.co.uk which offers its readers a variety of &lt;a href="http://urbanstone.co.uk/" target="_blank"&gt;shopping deals&lt;/a&gt; and allows them to &lt;a href="http://urbanstone.co.uk/" target="_blank"&gt;compare shopping prices&lt;/a&gt; &#8211; much like some of the website we use here in the States. &lt;/p&gt;&lt;p&gt;The way the website works is quite interesting, it pulls prices of an item that you select and runs it through a variety of websites to make sure that the price you pay, is indeed the lowest price possible. For example, if I am looking for a Nintendo Wii I can just type in the search box and it brings up a variety of results.&lt;/p&gt;&lt;p&gt;What was interesting was that the results showed not only the one color of the Wii but the other color as a separate item &#8211; just in case my search was not as specific. Also, it provides reviews of the product that you may be looking for which is powered through Epinions.com which means that all you have to do to find the best prices and any related reviews is go to one website. The prices for the Wii ranged from 140 pounds to 400 pounds but was found in over 58 stores. Upon clicking the item you get a little description of what you will be purchasing, from what website the item will be purchased and its related price.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;Recently, I came across a very interesting review request that was actually through Twitter. Interestingly enough, the website is called UrbanStone.co.uk which offers its readers a variety of &lt;a href="http://urbanstone.co.uk/" target="_blank"&gt;shopping deals&lt;/a&gt; and allows them to &lt;a href="http://urbanstone.co.uk/" target="_blank"&gt;compare shopping prices&lt;/a&gt; &amp;#8211; much like some of the website we use here in the States. &lt;/p&gt;
&lt;p&gt;The way the website works is quite interesting, it pulls prices of an item that you select and runs it through a variety of websites to make sure that the price you pay, is indeed the lowest price possible. For example, if I am looking for a Nintendo Wii I can just type in the search box and it brings up a variety of results.&lt;/p&gt;
&lt;p&gt;What was interesting was that the results showed not only the one color of the Wii but the other color as a separate item &amp;#8211; just in case my search was not as specific. Also, it provides reviews of the product that you may be looking for which is powered through Epinions.com which means that all you have to do to find the best prices and any related reviews is go to one website. The prices for the Wii ranged from 140 pounds to 400 pounds but was found in over 58 stores. Upon clicking the item you get a little description of what you will be purchasing, from what website the item will be purchased and its related price.&lt;/p&gt;
&lt;p&gt;You can look up everything from electronics such as &lt;a href="http://www.urbanstone.co.uk/DVD-Players-and-BluRay-Players/cp/categoryId-87" target="_blank"&gt;blu-ray players&lt;/a&gt; to home appliances such as &lt;a href="http://www.urbanstone.co.uk/Large-Kitchen-Appliances/cb/groupId-33152--categoryId-1728" target="_blank"&gt;freezers&lt;/a&gt;. If you&amp;#8217;re like me then you&amp;#8217;d probably want to make sure that instead of spending your money frivolously, taking the time to do the research can lead to tremendous savings and this website is just one more way to do just that. Overall, the website is well laid out and quite easy to use and for those in the UK, this might be just another way to find the best prices and reviews for products you want to purchase!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=l7F9Sp8lb5c:4yZ3MPojKXY:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=l7F9Sp8lb5c:4yZ3MPojKXY:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=l7F9Sp8lb5c:4yZ3MPojKXY:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=l7F9Sp8lb5c:4yZ3MPojKXY:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=l7F9Sp8lb5c:4yZ3MPojKXY:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=l7F9Sp8lb5c:4yZ3MPojKXY:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=l7F9Sp8lb5c:4yZ3MPojKXY:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1961</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/l7F9Sp8lb5c/" rel="alternate"/>
      <title>Shopping Around with UrbanStone</title>
      <updated>2010-01-14T01:23:26+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Is Anyone Satisfied with BuyBlogReviews?</title>
    <updated>2010-01-04T17:33:55+00:00</updated>
    <published>2010-01-04T15:03:13+00:00</published>
    <id>planetaki.com:2185:post:57206429</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/NwPwy5ihYQ0/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/57206429" rel="full"/>
    <summary type="html">&lt;p&gt;I have been receiving quite a bit of emails from BuyBlogReviews recently and I&#8217;m actually surprised as to what has happened. I did use BuyBlogReviews a few times and have received one or two payments from them but more recently I have been sticking with Sponsored Reviews and ReviewMe mainly because the offers are more geared towards my blog and the advertisers they have are usually high quality if you pick them well or if they come find you.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Whats my problem you ask?&lt;/strong&gt;&lt;br/&gt;
Heres the problem I have and I think its something that you&#8217;ll agree with. I am signed onto a few websites &#8211; Buy Blog Reviews, Sponsored Reviews, Review Me and Pay Per Post but the most emails I receive are from BBR. About 90% of them are about an opportunity being added and usually the opportunity pays around $2 or $3. I think that adding opportunities at that price point for some blogs, and letting them know about them, is sort of like looking down upon them. Im not saying I&#8217;m too good for that, but being at that price level its too low for most bloggers to be willing to accept it and write 200 words about something.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Buy Blog Reviews&lt;/strong&gt;&lt;br/&gt;
I just logged into the BBR system today because they keep sending me emails checking whether im still active and sure enough, lots of opportunities under $4 for things like credit cards, gambling and medical treatments. I just think that having a lot of offers about that kind of stuff doesnt mean that you&#8217;re connecting to your bloggers. I just thought it was sort of pointless. I decided that it was time to check on Pay Per Post.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;I have been receiving quite a bit of emails from BuyBlogReviews recently and I&amp;#8217;m actually surprised as to what has happened. I did use BuyBlogReviews a few times and have received one or two payments from them but more recently I have been sticking with Sponsored Reviews and ReviewMe mainly because the offers are more geared towards my blog and the advertisers they have are usually high quality if you pick them well or if they come find you.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Whats my problem you ask?&lt;/strong&gt;&lt;br /&gt;
Heres the problem I have and I think its something that you&amp;#8217;ll agree with. I am signed onto a few websites &amp;#8211; Buy Blog Reviews, Sponsored Reviews, Review Me and Pay Per Post but the most emails I receive are from BBR. About 90% of them are about an opportunity being added and usually the opportunity pays around $2 or $3. I think that adding opportunities at that price point for some blogs, and letting them know about them, is sort of like looking down upon them. Im not saying I&amp;#8217;m too good for that, but being at that price level its too low for most bloggers to be willing to accept it and write 200 words about something.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Buy Blog Reviews&lt;/strong&gt;&lt;br /&gt;
I just logged into the BBR system today because they keep sending me emails checking whether im still active and sure enough, lots of opportunities under $4 for things like credit cards, gambling and medical treatments. I just think that having a lot of offers about that kind of stuff doesnt mean that you&amp;#8217;re connecting to your bloggers. I just thought it was sort of pointless. I decided that it was time to check on Pay Per Post.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Pay Per Post&lt;/strong&gt;&lt;br /&gt;
I logged into the PPP system today and as expected, it looks a lot like Sponsored Tweets and the majority of opportunities were $3 or lower and the ones that were at $20 or higher level were for lipo treatments, casinos and other adult websites. I&amp;#8217;m not really sure where most of the quality opportunities are. I understand that PPP is probably relying on advertisers finding bloggers and thats fine, but I looked at Sponsored Reviews next. They had tons of opportunities that have been in the system.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sponsored Reviews &amp;#038; ReviewMe&lt;/strong&gt;&lt;br /&gt;
The problem with SponsoredReviews is that their advertisers sometimes never reply back or reply back with a really low counteroffer but they also have a lot of the lipo, casinos and adult type offers but they also have lots of other offers. I&amp;#8217;d say its about 40% of those types of offers and 60% good offers. As far as ReviewMe is concerned, they also have offers but its generally mixed. Very rarely do I find the medical type offers and I dont think ive even seen a lot of adult offers. Problem with ReviewMe is that there aren&amp;#8217;t that many to pick from most of the time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why am I picking on BBR?&lt;/strong&gt;&lt;br /&gt;
Basically, what I&amp;#8217;m saying is that, its easy to have tons of offers and none of them be of any use. Sponsored Reviews has lots of everything but it can be a while before you hear back from an advertiser. ReviewMe has more quality offers but there aren&amp;#8217;t many to pick from and PPP and BBR have offers but their payout is too low to even consider. What makes this post focused on BBR is the fact that I receive lots of emails about offers being added to the system even though the offers are really not quality at all. &lt;/p&gt;
&lt;p&gt;I want to know your thoughts if you use BBR or if you are a member and you get tons of emails from them. I think it would be nice to know that im not the only one receiving all these emails!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NwPwy5ihYQ0:uEV7884rxB0:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NwPwy5ihYQ0:uEV7884rxB0:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NwPwy5ihYQ0:uEV7884rxB0:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=NwPwy5ihYQ0:uEV7884rxB0:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NwPwy5ihYQ0:uEV7884rxB0:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NwPwy5ihYQ0:uEV7884rxB0:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=NwPwy5ihYQ0:uEV7884rxB0:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1950</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/NwPwy5ihYQ0/" rel="alternate"/>
      <title>Is Anyone Satisfied with BuyBlogReviews?</title>
      <updated>2010-01-04T17:33:55+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Happy New Year and My Resolutions</title>
    <updated>2010-01-02T01:52:53+00:00</updated>
    <published>2010-01-02T00:21:09+00:00</published>
    <id>planetaki.com:2185:post:56939169</id>
    <link href="http://feedproxy.google.com/~r/Balkhis/~3/zl9rnsLbv9c/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56939169" rel="full"/>
    <summary type="html">&lt;p&gt;2009 has been a big year and it is now that time, the time when I post what I wish to accomplish in the year to come. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;1. Redesign &lt;a href="http://www.uzzz.net/" target="_blank"&gt;Uzzz Productions&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;
The past year has been filled with projects, but surprisingly the company that launched it all has been neglected. In 2010 I will implement a new design on the Uzzz site that will not only update the site but show off some tricks I have picked up over the past year.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;2. Redesign some aspects of &lt;a href="http://www.wpbeginner.com/" target="_blank"&gt;WPBeginner&lt;/a&gt;&lt;/strong&gt;&lt;br/&gt;
Launching WPBeginner and watching it grow over the past few months has been incredibly rewarding. It has also shown me the tweaks that need to be made to the nuts and bolts of the site&#8217;s design. &lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;2009 has been a big year and it is now that time, the time when I post what I wish to accomplish in the year to come. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Redesign &lt;a href="http://www.uzzz.net/" target="_blank"&gt;Uzzz Productions&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
The past year has been filled with projects, but surprisingly the company that launched it all has been neglected. In 2010 I will implement a new design on the Uzzz site that will not only update the site but show off some tricks I have picked up over the past year.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Redesign some aspects of &lt;a href="http://www.wpbeginner.com/" target="_blank"&gt;WPBeginner&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;
Launching WPBeginner and watching it grow over the past few months has been incredibly rewarding. It has also shown me the tweaks that need to be made to the nuts and bolts of the site&amp;#8217;s design. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Broaden WPBeginner&amp;#8217;s reach&lt;/strong&gt;&lt;br /&gt;
In 2010, WPBeginner will be tweaked to add more features, services, and freebies for it&amp;#8217;s users. This will probably take most of 2010 to complete, but it will be well worth it. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Increase social media presence&lt;/strong&gt;&lt;br /&gt;
This goal pretty much speaks for itself. Not only do I plan to organically grow through sites like &lt;a href="http://twitter.com/syedbalkhi" target="_blank"&gt;Twitter&lt;/a&gt; and &lt;a href="http://www.facebook.com/wpbeginner" target="_blank"&gt;Facebook&lt;/a&gt;, but I look forward to the new social networks that 2010 will bring. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Attend and speak at more conferences and events&lt;/strong&gt;&lt;br /&gt;
This year brought me to New York City for my first Wordcamp. In a week I will be speaking at &lt;a href="http://atlantawordcamp.com/speakers/" target="_blank"&gt;Wordcamp Atlanta &lt;/a&gt; and spreading the word about increasing Wordpress security. I hope this year bring me more opportunities such as these to network and meet more of you in person. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Have Fun&lt;/strong&gt;&lt;br /&gt;
With Balkhis, WPBeginner, Uzzz Productions, and school, it is hard to find a moment to just relax and have fun. My final resolution is take time to myself and enjoy some off time. In the spirit of this resolution, I am blogging from Tennessee, in my first vacation of 2010. Lets hope this year brings more chances for times like these. &lt;/p&gt;
&lt;p&gt;I hope 2010 is a successful and enjoyable year for all. &lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=zl9rnsLbv9c:jSzHIr_ASA8:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=zl9rnsLbv9c:jSzHIr_ASA8:D7DqB2pKExk" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=zl9rnsLbv9c:jSzHIr_ASA8:D7DqB2pKExk" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=zl9rnsLbv9c:jSzHIr_ASA8:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=zl9rnsLbv9c:jSzHIr_ASA8:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=zl9rnsLbv9c:jSzHIr_ASA8:dnMXMwOfBR0" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?d=dnMXMwOfBR0" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Balkhis?a=zl9rnsLbv9c:jSzHIr_ASA8:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Balkhis?i=zl9rnsLbv9c:jSzHIr_ASA8:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Balkhis/~4/zl9rnsLbv9c" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.balkhis.com/?p=1714</id>
      <link href="http://feedproxy.google.com/~r/Balkhis/~3/zl9rnsLbv9c/" rel="alternate"/>
      <title>Happy New Year and My Resolutions</title>
      <updated>2010-01-02T01:52:53+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Happy New Year!</title>
    <updated>2010-01-01T17:49:34+00:00</updated>
    <published>2010-01-01T15:45:13+00:00</published>
    <id>planetaki.com:2185:post:56905756</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/NpmrAsjKmxY/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56905756" rel="full"/>
    <summary type="html">&lt;p&gt;&lt;img title="welcome2010" class="aligncenter size-full wp-image-1946" src="http://www.enkayblog.com/wp-content/welcome2010.jpg" height="160" onload="resizeImage( this )" alt="welcome2010" width="520"/&gt;&lt;/p&gt;&lt;p&gt;Happy New Year everyone! Welcome to 2010 and I hope all of you had a wonderful start to the new year and for those of you who celebrated a little beyond what you could handle &#8211; I hope you made it home safe and had a good time nonetheless. So, whats so important about the new year? Am I going to tell you that this year is going to be different? No, I probably wont. The only reason is because the year is not going to be any different if you dont &lt;em&gt;try&lt;/em&gt; or &lt;em&gt;want&lt;/em&gt; for it to be different.&lt;br/&gt;&lt;strong&gt;&lt;br/&gt;
Stay Motivated!&lt;/strong&gt;&lt;br/&gt;
What I&#8217;m getting at, is that yes its a new year and yes, you probably have a lot of goals but, if you aren&#8217;t motivated or don&#8217;t try to achieve your goals then nothing will be different this year. You have to stay motivated and maintain the initiative to bring change about. It is you who can change your future and you can do it this year if you put your mind to it.&lt;br/&gt;&lt;strong&gt;&lt;br/&gt;
Do What Ian Says&lt;/strong&gt;&lt;br/&gt;
I&#8217;m going to keep this post short but basically I wasn&#8217;t going to tell you what some others have told you. You can change your entire year if you start off on the right foot. This morning, I received an email from &lt;a href="http://www.ianfernando.com" target="_blank"&gt;Ian Fernando&lt;/a&gt; and he said exactly what I&#8217;m saying in this post. Ian&#8217;s email stated the following:&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;&lt;img title="welcome2010" class="aligncenter size-full wp-image-1946" src="http://www.enkayblog.com/wp-content/welcome2010.jpg" height="160" onload="resizeImage( this )" alt="welcome2010" width="520" /&gt;
&lt;div align="center"&gt;&lt;/div&gt;
&lt;p&gt;Happy New Year everyone! Welcome to 2010 and I hope all of you had a wonderful start to the new year and for those of you who celebrated a little beyond what you could handle &amp;#8211; I hope you made it home safe and had a good time nonetheless. So, whats so important about the new year? Am I going to tell you that this year is going to be different? No, I probably wont. The only reason is because the year is not going to be any different if you dont &lt;em&gt;try&lt;/em&gt; or &lt;em&gt;want&lt;/em&gt; for it to be different.&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
Stay Motivated!&lt;/strong&gt;&lt;br /&gt;
What I&amp;#8217;m getting at, is that yes its a new year and yes, you probably have a lot of goals but, if you aren&amp;#8217;t motivated or don&amp;#8217;t try to achieve your goals then nothing will be different this year. You have to stay motivated and maintain the initiative to bring change about. It is you who can change your future and you can do it this year if you put your mind to it.&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
Do What Ian Says&lt;/strong&gt;&lt;br /&gt;
I&amp;#8217;m going to keep this post short but basically I wasn&amp;#8217;t going to tell you what some others have told you. You can change your entire year if you start off on the right foot. This morning, I received an email from &lt;a href="http://www.ianfernando.com" target="_blank"&gt;Ian Fernando&lt;/a&gt; and he said exactly what I&amp;#8217;m saying in this post. Ian&amp;#8217;s email stated the following:&lt;/p&gt;
&lt;p&gt;&amp;#8220;I hope you have your whiteboard ready with new goals which you will tackle and be persistent throughout the year and not just for the month of January. &amp;#8221;&lt;/p&gt;
&lt;p&gt;He couldn&amp;#8217;t be more right. You are the decider for your life and you can set your goals but you have to run after them &amp;#8211; nothing comes to you! Make sure you do your part this year and stay focused and everything will pan out for you if you did all the right things. Stay persistent, motivated and maintain your initiative &amp;#8211; dont give up! Happy New Year everyone! &lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NpmrAsjKmxY:cduN5mxTDPs:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NpmrAsjKmxY:cduN5mxTDPs:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NpmrAsjKmxY:cduN5mxTDPs:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=NpmrAsjKmxY:cduN5mxTDPs:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NpmrAsjKmxY:cduN5mxTDPs:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=NpmrAsjKmxY:cduN5mxTDPs:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=NpmrAsjKmxY:cduN5mxTDPs:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;/p&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1945</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/NpmrAsjKmxY/" rel="alternate"/>
      <title>Happy New Year!</title>
      <updated>2010-01-01T17:49:34+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Make Sticky Posts in WordPress</title>
    <updated>2010-01-01T15:42:42+00:00</updated>
    <published>2010-01-01T12:19:05+00:00</published>
    <id>planetaki.com:2185:post:56895717</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/-g0t6DNydcY/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56895717" rel="full"/>
    <summary type="html">&lt;p&gt;We have written about &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/" target="_blank"&gt;how to display recent sticky posts in WordPress&lt;/a&gt;, but we never covered how to make sticky posts which was our shortcoming because one of our users asked us this question. Making Sticky Posts in WordPress is really easy.&lt;/p&gt;&lt;p&gt;First you would need to login to your WP-Admin Panel, and open up the post page. Look towards the right hand sidebar where you will see a Publish box. Look at the (Visibility: Public) field and click edit. Check the box to make the post Sticky and publish it. If you want to make an older post sticky, follow the same steps and just click save. &lt;/p&gt;&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/makesticky.gif" onload="resizeImage( this )" alt="Make Sticky Posts in WordPress"/&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;We have written about &lt;a href="http://www.wpbeginner.com/wp-tutorials/how-to-display-the-latest-sticky-posts-in-wordpress/" target="_blank"&gt;how to display recent sticky posts in WordPress&lt;/a&gt;, but we never covered how to make sticky posts which was our shortcoming because one of our users asked us this question. Making Sticky Posts in WordPress is really easy.&lt;/p&gt;
&lt;p&gt;First you would need to login to your WP-Admin Panel, and open up the post page. Look towards the right hand sidebar where you will see a Publish box. Look at the (Visibility: Public) field and click edit. Check the box to make the post Sticky and publish it. If you want to make an older post sticky, follow the same steps and just click save. &lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/blogposts/makesticky.gif" onload="resizeImage( this )" alt="Make Sticky Posts in WordPress" /&gt;&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/beginners-guide/how-to-add-a-new-post-in-wordpress-and-utilize-all-the-features/" title="Permanent Link: How to Add a New Post in WordPress and Utilize all the Features" rel="bookmark" target="_blank"&gt;How to Add a New Post in WordPress and Utilize all the Features&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/beginners-guide/how-to-add-categories-and-subcategories-to-wordpress/" title="Permanent Link: How to Add Categories and Subcategories to WordPress" rel="bookmark" target="_blank"&gt;How to Add Categories and Subcategories to WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/" title="Permanent Link: Ultimate Guide to Upgrade WordPress for Beginners [Infograph]" rel="bookmark" target="_blank"&gt;Ultimate Guide to Upgrade WordPress for Beginners [Infograph]&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=-g0t6DNydcY:EpRW_DJ9kTw:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=-g0t6DNydcY:EpRW_DJ9kTw:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=-g0t6DNydcY:EpRW_DJ9kTw:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/-g0t6DNydcY" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1153</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/-g0t6DNydcY/" rel="alternate"/>
      <title>How to Make Sticky Posts in WordPress</title>
      <updated>2010-01-01T15:42:42+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Add an Author&#8217;s Photo in WordPress</title>
    <updated>2009-12-31T12:39:55+00:00</updated>
    <published>2009-12-31T11:30:58+00:00</published>
    <id>planetaki.com:2185:post:56783254</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/JXSXKCqF0HU/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56783254" rel="full"/>
    <summary type="html">&lt;p&gt;WordPress has many useful plugins to increase author and user interaction. Having a good &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-a-custom-author-profile-page-to-your-wordpress/" target="_blank"&gt;author profile page&lt;/a&gt; is one of them. One of the most important part of the author page is author&#8217;s profile photo, so users can associate a picture with them. &lt;a href="http://wordpress.org/extend/plugins/user-photo/" target="_blank"&gt;User Photo&lt;/a&gt; plugin allows a user to associate a profile photo with their account through their &#8220;Your Profile&#8221; page. Admins may add a user profile photo by accessing the &#8220;Edit User&#8221; page. Uploaded images are resized to fit the dimensions specified on the options page. A thumbnail image correspondingly is also generated. User photos may be displayed within a post or a comment to help identify the author. To see the documentations on how to implement this plugin, see the &lt;a href="http://wordpress.org/extend/plugins/user-photo/" target="_blank"&gt;WordPress Plugin page&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;img src="http://www.wpbeginner.com/multiauthor/userphoto.gif" onload="resizeImage( this )" alt="User Photo"/&gt;&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;WordPress has many useful plugins to increase author and user interaction. Having a good &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-a-custom-author-profile-page-to-your-wordpress/" target="_blank"&gt;author profile page&lt;/a&gt; is one of them. One of the most important part of the author page is author&amp;#8217;s profile photo, so users can associate a picture with them. &lt;a href="http://wordpress.org/extend/plugins/user-photo/" target="_blank"&gt;User Photo&lt;/a&gt; plugin allows a user to associate a profile photo with their account through their &amp;#8220;Your Profile&amp;#8221; page. Admins may add a user profile photo by accessing the &amp;#8220;Edit User&amp;#8221; page. Uploaded images are resized to fit the dimensions specified on the options page. A thumbnail image correspondingly is also generated. User photos may be displayed within a post or a comment to help identify the author. To see the documentations on how to implement this plugin, see the &lt;a href="http://wordpress.org/extend/plugins/user-photo/" target="_blank"&gt;WordPress Plugin page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/multiauthor/userphoto.gif" onload="resizeImage( this )" alt="User Photo" /&gt;&lt;/p&gt;
&lt;h4&gt;&lt;a href="http://wordpress.org/extend/plugins/user-photo/" target="_blank"&gt;User Photo&lt;/a&gt;&lt;/h4&gt;


&lt;p&gt;No related posts.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JXSXKCqF0HU:FaS7XCXRW9w:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=JXSXKCqF0HU:FaS7XCXRW9w:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=JXSXKCqF0HU:FaS7XCXRW9w:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/JXSXKCqF0HU" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1162</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/JXSXKCqF0HU/" rel="alternate"/>
      <title>How to Add an Author&#8217;s Photo in WordPress</title>
      <updated>2009-12-31T12:39:55+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>New Years Resolutions</title>
    <updated>2009-12-31T07:06:33+00:00</updated>
    <published>2009-12-31T05:00:04+00:00</published>
    <id>planetaki.com:2185:post:56761103</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/sNVBAnh3IEU/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56761103" rel="full"/>
    <summary type="html">&lt;p&gt;&lt;img title="New Years Resolutions" class="size-full wp-image-1940" src="http://www.enkayblog.com/wp-content//newyear.gif" height="235" onload="resizeImage( this )" alt="New Years Resolutions" width="520"/&gt;&lt;/p&gt;&lt;p&gt;Every time around this year people make fake promises to themselves about the upcoming new year &#8211; resolutions. I&#8217;m just kidding.. As you all know the New Year is just hours away and we look upon the past year and think about some things that we would do differently or we would have liked to do differently.&lt;/p&gt;</summary>
    <content type="html">&lt;div align="center"&gt;&lt;img title="New Years Resolutions" class="size-full wp-image-1940" src="http://www.enkayblog.com/wp-content//newyear.gif" height="235" onload="resizeImage( this )" alt="New Years Resolutions" width="520" /&gt;&lt;/div&gt;
&lt;p&gt;Every time around this year people make fake promises to themselves about the upcoming new year &amp;#8211; resolutions. I&amp;#8217;m just kidding.. As you all know the New Year is just hours away and we look upon the past year and think about some things that we would do differently or we would have liked to do differently.&lt;/p&gt;
&lt;p&gt;For many, this is a time to decide to quit smoking, work harder, lose weight, etc. But how many of these resolutions actually come true. I mean, honestly, how many people even remember their resolutions after the first week or two of January have passed by? Not many, I&amp;#8217;d imagine.&lt;/p&gt;
&lt;p&gt;Well, either way, I think it would be a great idea to actually write out a few good resolution ideas and maybe some of you guys can chime in and tell me what you feel. These are just random suggestions dealing with life, your career, etc, so dont take these personally &amp;#8211; these are merely for fun and entertainment. Also, I am doing the first 4 as what we should do more vs. what we should do less and the last is something we should try and maintain.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1) Learn More&lt;/strong&gt; &amp;#8211; Being a student, this sounds like a funny first thought, but think about it. The economy is kind of suffering and the competition for new jobs and even existing jobs is high so if you learn more, you will become more qualified to either retain your job or you may be one of the lucky few who actually receives a promotion. If you&amp;#8217;re in the job market, then it will show your employers how motivated you are to learn and this will eventually help you get that job you&amp;#8217;ve always wanted.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2) Worry Less&lt;/strong&gt; &amp;#8211; Some of the most enjoyable moments in life can be ruined or forgotten because you worry too much and carry too much stress on your shoulders. I know its easier said than done but staying positive an&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3) Earn More&lt;/strong&gt; &amp;#8211; I think this is probably the most important for us MMO bloggers but earning more money should not be more important than improving yourself through learning and enjoying the moments of life more by worrying less and thats why this is third on the list. You have to realize that money isn&amp;#8217;t everything however, having more money in the future years will only be another way to prove to oneself that you can do what you dream and you can make things happen if you really want them. Trying to earn more isn&amp;#8217;t only about the money but about the feeling of achieving success.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4) Waste Less&lt;/strong&gt; &amp;#8211; With poverty being so prevalent, it is our duty as human being who have the basic necessities in life to try and waste as little as possible &amp;#8211; whether its food, money, or anything else. There are people who starve every day around the world and the less we waste, the more they will have. The less money we spend on food that we won&amp;#8217;t eat or finish completely, that money could go to a better place. We have to realize that our actions have an effect on such people and we can help reduce that by reducing the impact our lifestyles have on people who are less fortunate than us.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5) Maintain health and happiness&lt;/strong&gt; &amp;#8211; When I say maintain, my assumption is that you are already healthy and happy or striving to achieve a little more of both. In this sense, it is important to keep our health in mind and always remember that our health is very important &amp;#8211; no matter what the cost may be. Remaining healthy will result in a more prosperous future. In addition, its important to stay happy and look at the brighter side of things as it will always help in making any situation better.&lt;/p&gt;
&lt;p&gt;I hope these resolutions are ones that you can relate with. These are just a few of my suggestions however it would be nice to see what you have in mind for the upcoming New Year!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=sNVBAnh3IEU:rBazUg9v57M:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=sNVBAnh3IEU:rBazUg9v57M:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=sNVBAnh3IEU:rBazUg9v57M:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=sNVBAnh3IEU:rBazUg9v57M:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=sNVBAnh3IEU:rBazUg9v57M:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=sNVBAnh3IEU:rBazUg9v57M:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=sNVBAnh3IEU:rBazUg9v57M:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1937</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/sNVBAnh3IEU/" rel="alternate"/>
      <title>New Years Resolutions</title>
      <updated>2009-12-31T07:06:33+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Lets Reduce Our Energy Impact</title>
    <updated>2010-01-04T23:25:03+00:00</updated>
    <published>2009-12-30T23:52:40+00:00</published>
    <id>planetaki.com:2185:post:57246860</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/-Ul_3bTuetI/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/57246860" rel="full"/>
    <summary type="html">&lt;p&gt;With things regarding the economy not seeing an upward trend lately, lots of people have been seeing how they can reduce costs and recently, I received a review request from &lt;a href="http://www.the-esa.org/enigin" target="_blank"&gt;Enigin&lt;/a&gt; PLC which is actually an energy saving association that exists to promote the ethos of cost-effective and considered energy saving strategies. They wish to facilitate the exchange of information to help build up a knowledge base to provide information to other individuals who may be interested in contributing to help the environment and reduce the effects of climate change.&lt;/p&gt;&lt;p&gt;Eingin basically endorses the aims and ethos of the ESA and really hopes to look into the future with a more fuel efficient and cost-effective viewpoint. They want to help humans realize their impact on the world around them and help them reduce it by offering them a way to do so. Basically, Eingin is hoping to reduce our impact on the world and do it in a way where we can raise awareness as well. They even have a link to &lt;a href="http://www.enigin-wrigley.org/" target="_blank"&gt;Wrigleys Eingin blog&lt;/a&gt; which was a good link and a good read as well. So now I ask you guys, why would anyone not want to partake in something like this?&lt;/p&gt;&lt;p&gt;They have some good resources on the website, a membership program as well as lots of great news so we should all do our part and atleast take a look at Eingin with the hopes of creating a positive impact in the coming year!&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;With things regarding the economy not seeing an upward trend lately, lots of people have been seeing how they can reduce costs and recently, I received a review request from &lt;a href="http://www.the-esa.org/enigin" target="_blank"&gt;Enigin&lt;/a&gt; PLC which is actually an energy saving association that exists to promote the ethos of cost-effective and considered energy saving strategies. They wish to facilitate the exchange of information to help build up a knowledge base to provide information to other individuals who may be interested in contributing to help the environment and reduce the effects of climate change.&lt;/p&gt;
&lt;p&gt;Eingin basically endorses the aims and ethos of the ESA and really hopes to look into the future with a more fuel efficient and cost-effective viewpoint. They want to help humans realize their impact on the world around them and help them reduce it by offering them a way to do so. Basically, Eingin is hoping to reduce our impact on the world and do it in a way where we can raise awareness as well. They even have a link to &lt;a href="http://www.enigin-wrigley.org/" target="_blank"&gt;Wrigleys Eingin blog&lt;/a&gt; which was a good link and a good read as well. So now I ask you guys, why would anyone not want to partake in something like this?&lt;/p&gt;
&lt;p&gt;They have some good resources on the website, a membership program as well as lots of great news so we should all do our part and atleast take a look at Eingin with the hopes of creating a positive impact in the coming year!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=-Ul_3bTuetI:S-r1uj43yyA:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=-Ul_3bTuetI:S-r1uj43yyA:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=-Ul_3bTuetI:S-r1uj43yyA:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=-Ul_3bTuetI:S-r1uj43yyA:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=-Ul_3bTuetI:S-r1uj43yyA:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=-Ul_3bTuetI:S-r1uj43yyA:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=-Ul_3bTuetI:S-r1uj43yyA:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1955</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/-Ul_3bTuetI/" rel="alternate"/>
      <title>Lets Reduce Our Energy Impact</title>
      <updated>2010-01-04T23:25:03+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Display a Category only if it has Posts in WordPress</title>
    <updated>2009-12-31T00:05:20+00:00</updated>
    <published>2009-12-30T20:10:31+00:00</published>
    <id>planetaki.com:2185:post:56725242</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/at1C7zZ4SYg/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56725242" rel="full"/>
    <summary type="html">&lt;p&gt;This snippet that we are sharing in this article is helpful in very custom designs. By default you can use &lt;a href="http://codex.wordpress.org/Template_Tags/wp_list_categories" target="_blank"&gt;wp_list_categories&lt;/a&gt; function to display categories, and it only displays categories if it has posts. Sometimes when you are customizing WordPress, you might need to use it this way. When we were working on a client&#8217;s project, we found a need for this snippet, therefore we are sharing it for anyone else who can use it.&lt;/p&gt;&lt;p&gt;
&amp;lt;?php if (get_category('17')-&amp;gt;category_count &amp;gt; 0) echo get_category('17')-&amp;gt;cat_name; ?&amp;gt;
&lt;/p&gt;&lt;p&gt;In the method above we are specifying the category ID for very specific category if you want to check, but you can do this with all categories also. Just paste the snippet below where you want it.&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;This snippet that we are sharing in this article is helpful in very custom designs. By default you can use &lt;a href="http://codex.wordpress.org/Template_Tags/wp_list_categories" target="_blank"&gt;wp_list_categories&lt;/a&gt; function to display categories, and it only displays categories if it has posts. Sometimes when you are customizing WordPress, you might need to use it this way. When we were working on a client&amp;#8217;s project, we found a need for this snippet, therefore we are sharing it for anyone else who can use it.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
&amp;lt;?php if (get_category('17')-&amp;gt;category_count &amp;gt; 0) echo get_category('17')-&amp;gt;cat_name; ?&amp;gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In the method above we are specifying the category ID for very specific category if you want to check, but you can do this with all categories also. Just paste the snippet below where you want it.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php foreach (get_categories() as $category){&lt;br /&gt;
	if ($category-&amp;gt;count &amp;gt; 0){&lt;br /&gt;
		echo $category-&amp;gt;cat_name;&lt;br /&gt;
	}&lt;br /&gt;
} ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Now how would you use it? Well sometimes you have a category with a specific name, but you want to display the link with a different anchor text, and you only want to display it if it has posts, this way can be handy. So for instance in your navigation menu, you can enter something like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php if (get_category('17')-&amp;gt;category_count &amp;gt; 0) echo &amp;quot;&amp;lt;a href=\&amp;quot;&amp;quot;.get_bloginfo('home').&amp;quot;/category/news/\&amp;quot;&amp;gt;Blog&amp;lt;/a&amp;gt;&amp;quot;; ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This will check if category 17 has any posts, if it does, then it will display the navigation menu item called Blog, otherwise it would not.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s very simple and easy, but for those new developers it can be helpful.&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/display-subcategories-on-category-pages-in-wordpress/" title="Permanent Link: Display Subcategories on Category Pages in WordPress" rel="bookmark" target="_blank"&gt;Display Subcategories on Category Pages in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/10-most-wanted-category-hacks-and-plugins-for-wordpress/" title="Permanent Link: 10 Most Wanted Category Hacks and Plugins for WordPress" rel="bookmark" target="_blank"&gt;10 Most Wanted Category Hacks and Plugins for WordPress&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.wpbeginner.com/wp-tutorials/display-the-most-accurate-comment-count-in-wordpress/" title="Permanent Link: Display the Most Accurate Comment Count in WordPress" rel="bookmark" target="_blank"&gt;Display the Most Accurate Comment Count in WordPress&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=at1C7zZ4SYg:QMc68kKCPlU:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=at1C7zZ4SYg:QMc68kKCPlU:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=at1C7zZ4SYg:QMc68kKCPlU:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/at1C7zZ4SYg" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1151</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/at1C7zZ4SYg/" rel="alternate"/>
      <title>How to Display a Category only if it has Posts in WordPress</title>
      <updated>2009-12-31T00:05:20+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>How to Display Author&#8217;s Twitter and Facebook on the Profile Page</title>
    <updated>2009-12-29T14:54:47+00:00</updated>
    <published>2009-12-29T11:53:26+00:00</published>
    <id>planetaki.com:2185:post:56534089</id>
    <link href="http://feedproxy.google.com/~r/wpbeginner/~3/nXQFI_gFrOc/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56534089" rel="full"/>
    <summary type="html">&lt;p&gt;By default WordPress allow to display author&#8217;s website, email, and a few other useless IM contacts, but it is missing important social media networks like Facebook, and Twitter. In this tutorial, we will show you how you can add author&#8217;s twitter, facebook, linkedin, or any other contact info on the profile page. &lt;/p&gt;&lt;p&gt;First thing you need to do is open your functions.php in your template folder and add the following codes:&lt;/p&gt;&lt;p&gt;&amp;lt;?php&lt;br/&gt;
function my_new_contactmethods( $contactmethods ) {&lt;br/&gt;
  // Add Twitter&lt;br/&gt;
  $contactmethods['twitter'] = 'Twitter';&lt;br/&gt;
  //add Facebook&lt;br/&gt;
  $contactmethods['facebook'] = 'Facebook';&lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;By default WordPress allow to display author&amp;#8217;s website, email, and a few other useless IM contacts, but it is missing important social media networks like Facebook, and Twitter. In this tutorial, we will show you how you can add author&amp;#8217;s twitter, facebook, linkedin, or any other contact info on the profile page. &lt;/p&gt;
&lt;p&gt;First thing you need to do is open your functions.php in your template folder and add the following codes:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;
function my_new_contactmethods( $contactmethods ) {&lt;br /&gt;
  // Add Twitter&lt;br /&gt;
  $contactmethods['twitter'] = 'Twitter';&lt;br /&gt;
  //add Facebook&lt;br /&gt;
  $contactmethods['facebook'] = 'Facebook';&lt;/p&gt;
&lt;p&gt;  return $contactmethods;&lt;br /&gt;
}&lt;br /&gt;
add_filter('user_contactmethods','my_new_contactmethods',10,1);&lt;br /&gt;
?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can follow the methods and add any other field that you want. Once you add this function, user profile page in the admin panel will look like this:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.wpbeginner.com/wp2-9/usermeta.gif" onload="resizeImage( this )" alt="Extend User Contact Info" /&gt;&lt;/p&gt;
&lt;p&gt;Add the information there. Now you will need to display it in your template through author.php file. You should check out our tutorial on &lt;a href="http://www.wpbeginner.com/wp-themes/how-to-add-a-custom-author-profile-page-to-your-wordpress/" target="_blank"&gt;How to Add an Author Profile Page in WordPress&lt;/a&gt; and for further documentation also look at &lt;a href="http://codex.wordpress.org/Author_Templates" target="_blank"&gt;WordPress Codex&lt;/a&gt; page for Author Templating.&lt;/p&gt;
&lt;p&gt;All you have to do is paste the following code in your template file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;lt;?php echo $curauth-&amp;gt;twitter; ?&amp;gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can change the name of the field to what you like. This way you can display it in your author.php file. You may modify it to your liking. For example use this as links and so on.&lt;/p&gt;
&lt;p&gt;If you have any questions feel free to write it in the comments, and we will answer them.&lt;/p&gt;
&lt;p&gt;Note: This tutorial will work in WP 2.9+ thanks to &lt;a href="http://yoast.com/user-contact-fields-wp29/" target="_blank"&gt;Joost De Valk &lt;/a&gt;&lt;/p&gt;


&lt;p&gt;Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.wpbeginner.com/news/most-notable-features-in-wordpress-2-9/" title="Permanent Link: Most Notable Features in WordPress 2.9" rel="bookmark" target="_blank"&gt;Most Notable Features in WordPress 2.9&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXQFI_gFrOc:EE-AL83sMG0:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?i=nXQFI_gFrOc:EE-AL83sMG0:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/wpbeginner?a=nXQFI_gFrOc:EE-AL83sMG0:I9og5sOYxJI" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/wpbeginner?d=I9og5sOYxJI" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/wpbeginner/~4/nXQFI_gFrOc" height="1" onload="resizeImage( this )" width="1" /&gt;</content>
    <source>
      <id>http://www.wpbeginner.com/?p=1156</id>
      <link href="http://feedproxy.google.com/~r/wpbeginner/~3/nXQFI_gFrOc/" rel="alternate"/>
      <title>How to Display Author&#8217;s Twitter and Facebook on the Profile Page</title>
      <updated>2009-12-29T14:54:47+00:00</updated>
    </source>
  </entry>
  <entry>
    <title>Is Being Creative Useful?</title>
    <updated>2009-12-29T06:21:18+00:00</updated>
    <published>2009-12-29T05:00:17+00:00</published>
    <id>planetaki.com:2185:post:56490575</id>
    <link href="http://feedproxy.google.com/~r/enkay/~3/dFh_qM0aScE/" rel="alternate"/>
    <link href="http://www.planetaki.com/balkhis/posts/56490575" rel="full"/>
    <summary type="html">&lt;p&gt;&lt;img title="Creative" class="aligncenter size-full wp-image-1933" src="http://www.enkayblog.com/wp-content/creative.gif" onload="resizeImage( this )" alt="Creative"/&gt;&lt;br/&gt;
Im sure many of you who read my blog have been blogging for a while and maybe haven&#8217;t seen results or the complete opposite. When you sit down one day and think about you, you wonder, whats the difference between me and the other guy who is actually doing quite well?&lt;/p&gt;&lt;p&gt;The answer is simple, if not pretty obvious &#8211; they attract more readers. Does that mean they write better or they&#8217;re more creative or their blog looks better? Who really knows &#8211; but when it all boils down, you have to know that you have to be creative. You have to try and use the resources you have in the best possible ways to achieve the results youre looking for. &lt;/p&gt;</summary>
    <content type="html">&lt;p&gt;&lt;img title="Creative" class="aligncenter size-full wp-image-1933" src="http://www.enkayblog.com/wp-content/creative.gif" onload="resizeImage( this )" alt="Creative" /&gt;&lt;br /&gt;
Im sure many of you who read my blog have been blogging for a while and maybe haven&amp;#8217;t seen results or the complete opposite. When you sit down one day and think about you, you wonder, whats the difference between me and the other guy who is actually doing quite well?&lt;/p&gt;
&lt;p&gt;The answer is simple, if not pretty obvious &amp;#8211; they attract more readers. Does that mean they write better or they&amp;#8217;re more creative or their blog looks better? Who really knows &amp;#8211; but when it all boils down, you have to know that you have to be creative. You have to try and use the resources you have in the best possible ways to achieve the results youre looking for. &lt;/p&gt;
&lt;p&gt;Back in the day, I started wondering whether being creative in general was useful to being a good blogger and if so, how do we use our creativity to get more readers. The answer is simple and here are a few ways you can use your creativity.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1) Videos&lt;/strong&gt; &amp;#8211; get creative in the blogging business by using videos to enhance your posts. I&amp;#8217;ve always said you can bring your blog posts to life by using videos instead of actual words. Staying away from fancy effects may be good but depends what youre doing. A lot of the fade in/fade out and transitions can affect you negatively but if you do some interesting video effects then it might actually help you but do remember that it would result in taking more time to put out videos.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2) Pictures&lt;/strong&gt; &amp;#8211; people love pictures and adding pictures to your post like I did to this one can really help attract and keep visitors on your page when they first visit the page. Pictures can also be used as graphs or to tell a story so you can use pictures to get creative. However, this does require you to sort of know how to use photo editing software such as Photoshop but hopefully you already know your way around that a little at least.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3) Humor&lt;/strong&gt; &amp;#8211; Humor is a big part of everything and some people are great at it and others arent. You have to see what youre good at and use it to your advantage so if humor is not your thing or your jokes just dont work then dont do it! Find something youre good at and try to use it to your advantange. I have done a few things with humor and they&amp;#8217;ve turned out okay but nothing spectacular. &lt;a href="http://www.imwithjoe.com" target="_blank"&gt;ImWithJoe.com&lt;/a&gt; is a perfect example of using humor to attract readers. Do what you have to do, but humor is a good place to start &amp;#8211; thats if youre good!&lt;/p&gt;
&lt;p&gt;Theres a lot more creative tips but to keep from having long posts like I once did I&amp;#8217;m going to stop here and try to pick up after the New Years post! Hope you all have a good week and a great New Years!&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/enkay?a=dFh_qM0aScE:5vuGZRJI6ek:yIl2AUoC8zA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=yIl2AUoC8zA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=dFh_qM0aScE:5vuGZRJI6ek:7Q72WNTAKBA" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=7Q72WNTAKBA" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=dFh_qM0aScE:5vuGZRJI6ek:V_sGLiPBpWU" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=dFh_qM0aScE:5vuGZRJI6ek:V_sGLiPBpWU" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=dFh_qM0aScE:5vuGZRJI6ek:qj6IDK7rITs" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?d=qj6IDK7rITs" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/enkay?a=dFh_qM0aScE:5vuGZRJI6ek:gIN9vFwOqvQ" target="_blank"&gt;&lt;img src="http://feeds.feedburner.com/~ff/enkay?i=dFh_qM0aScE:5vuGZRJI6ek:gIN9vFwOqvQ" border="0" onload="resizeImage( this )" /&gt;&lt;/a&gt;
&lt;/div&gt;</content>
    <source>
      <id>http://www.enkayblog.com/?p=1932</id>
      <link href="http://feedproxy.google.com/~r/enkay/~3/dFh_qM0aScE/" rel="alternate"/>
      <title>Is Being Creative Useful?</title>
      <updated>2009-12-29T06:21:18+00:00</updated>
    </source>
  </entry>
</feed>
