<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog Tutorials</title>
	<atom:link href="http://blogtuts.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogtuts.com</link>
	<description>Blog Tutorials, Tools, and Resources</description>
	<lastBuildDate>Sun, 30 Aug 2009 16:19:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Separating Trackbacks and Comments in WordPress 2.7+</title>
		<link>http://blogtuts.com/separating-trackbacks-and-comments-in-wordpress-2-7/</link>
		<comments>http://blogtuts.com/separating-trackbacks-and-comments-in-wordpress-2-7/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 16:19:43 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WordPress Code]]></category>
		<category><![CDATA[WordPress Comments]]></category>
		<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress Pingbacks]]></category>
		<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[WordPress Trackbacks]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=124</guid>
		<description><![CDATA[Interested in separating your trackbacks and comments on your WordPress blog?   This blog tutorial should have you covered, whether you use a modern WordPress installation, or an older (pre 2.7) version of WordPress.   Below you&#8217;ll find we&#8217;ve put together a tutorial for both types of comment loops.
For WordPress 2.7+ Installations
Locate the following code in your [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
<li><a href='http://blogtuts.com/code-adding-edit-buttons-to-wordpress/' rel='bookmark' title='Permanent Link: Code: Adding Edit Buttons to WordPress'>Code: Adding Edit Buttons to WordPress</a></li>
<li><a href='http://blogtuts.com/last-modified-date-code-wordpress/' rel='bookmark' title='Permanent Link: Code: Display Last Modified Date in WordPress'>Code: Display Last Modified Date in WordPress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Interested in separating your trackbacks and comments on your WordPress blog?   This <a href="http://blogtuts.com/">blog tutorial</a> should have you covered, whether you use a modern WordPress installation, or an older (pre 2.7) version of WordPress.   Below you&#8217;ll find we&#8217;ve put together a tutorial for both types of comment loops.</p>
<h3><strong>For WordPress 2.7+ Installations</strong></h3>
<p>Locate the following code in your index.php or single.php file (whichever file your theme uses to show single post pages):</p>
<p><code>&lt;?php comments_template(); ?&gt;</code></p>
<p><strong>Replace</strong> that code with the following:</p>
<p><code>&lt;?php comments_template('', true); ?&gt;</code></p>
<p>That is it for that file.   Now go to your <strong>comments.php</strong> file and locate the following code:</p>
<p><code>&lt;?php if ( have_comments() ) : ?&gt;</code></p>
<p>Immediately <strong>below</strong> that code, insert the following code:</p>
<p><code>&lt;?php if ( ! empty($comments_by_type['comment']) ) : ?&gt;</code></p>
<p>Okay, once that is done, you&#8217;ll next need to scroll down a little further (still in the comments.php file) and locate the following code:</p>
<p><code>&lt;?php wp_list_comments(); ?&gt;</code></p>
<p>You&#8217;ll want to <strong>replace</strong> that code with the below code:</p>
<p><code>&lt;?php wp_list_comments('type=comment'); ?&gt;</code></p>
<p>Immediately below this function you should see the following code:</p>
<p><code>&lt;/ol&gt;</code></p>
<p>Directly <strong>below</strong> that code, place the following code:</p>
<p><code>&lt;?php endif; ?&gt;</code></p>
<p>That should take care of the comment loop.  The last step is to insert the code which will display the trackbacks/pingbacks.  This can be placed anywhere below the code we just hacked above:</p>
<p><code>&lt;?php if ( ! empty($comments_by_type['pings']) ) : ?&gt;<br />
&lt;h3 id="pings"&gt;Trackbacks/Pingbacks&lt;/h3&gt;<br />
&lt;ol&gt;<br />
&lt;?php wp_list_comments('type=pings'); ?&gt;<br />
&lt;/ol&gt;<br />
&lt;?php endif; ?&gt;</code></p>
<p>Some people prefer to display their trackbacks and pingbacks below the comment form or somewhere else out of the way, so this is really up to you!  Just place the above code where you want to show them.   If you don&#8217;t like them showing at all on your blog, just don&#8217;t place the above code at all.</p>
<p>Once that is done, it is time to give it a try.  Check it out on your blog and let us know how everything turns out!</p>
<h3><strong>For Pre-WordPress 2.7 Installations:</strong></h3>
<p>Prior to WordPress 2.7, the comment form wasn&#8217;t nearly as functional as it is with the newer versions and also included a lot more code, but it is still possible to separate the trackbacks and comments using the old comment loop.     If you&#8217;d like to separate your trackbacks from your comments on a WordPress 2.6 or earlier installation, here is the steps you&#8217;ll need to take.</p>
<p>First, access your comments.php file and grab the following code:</p>
<p><code>&lt;?php foreach ($comments as $comment) : ?&gt;</code></p>
<p>Immediately <strong>after</strong> the above code, you&#8217;ll want to place the following code:</p>
<p><code>&lt;?php $comment_type = get_comment_type(); ?&gt;<br />
&lt;?php if($comment_type == 'comment') { ?&gt;</code></p>
<p>Next, scroll down a little bit and locate the following code:</p>
<p><code>&lt;?php endforeach; /* end for each comment */ ?&gt;</code></p>
<p>Immediately <strong>before</strong> the above code, you&#8217;ll want to place this code:</p>
<p><code>&lt;?php } /* End of is_comment statement */ ?&gt;</code></p>
<p>This will filter out all of the trackbacks and pingbacks from your main comments loop. Now we need to create a second comments loop to display the trackbacks and pingbacks.  Almost immediately below the code from step 2 you should find this code:</p>
<p><code>&lt;?php else : // this is displayed if there are no comments so far ?&gt;</code></p>
<p>Immediately <strong>before</strong> the above code, you&#8217;ll want to place this code:</p>
<p><code>&lt;h3&gt;Trackbacks&lt;/h3&gt;<br />
&lt;ol&gt;<br />
&lt;?php foreach ($comments as $comment) : ?&gt;<br />
&lt;?php $comment_type = get_comment_type(); ?&gt;<br />
&lt;?php if($comment_type != 'comment') { ?&gt;<br />
&lt;li&gt;&lt;?php comment_author_link() ?&gt;&lt;/li&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ol&gt;</code></p>
<p>You can adjust this code to display how you want to, including using a different header if you have a specific look for your header 3.</p>
<p>If you&#8217;ve tried this tutorial, let us know how it worked for you in the comments!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=124&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
<li><a href='http://blogtuts.com/code-adding-edit-buttons-to-wordpress/' rel='bookmark' title='Permanent Link: Code: Adding Edit Buttons to WordPress'>Code: Adding Edit Buttons to WordPress</a></li>
<li><a href='http://blogtuts.com/last-modified-date-code-wordpress/' rel='bookmark' title='Permanent Link: Code: Display Last Modified Date in WordPress'>Code: Display Last Modified Date in WordPress</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/separating-trackbacks-and-comments-in-wordpress-2-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professional Real Estate WordPress Themes</title>
		<link>http://blogtuts.com/real-estate-wordpress-themes/</link>
		<comments>http://blogtuts.com/real-estate-wordpress-themes/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 17:38:26 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Agent Themes]]></category>
		<category><![CDATA[Free Real Estate Themes]]></category>
		<category><![CDATA[Premium Real Estate Themes]]></category>
		<category><![CDATA[Real Estate Agent]]></category>
		<category><![CDATA[Real Estate Themes]]></category>
		<category><![CDATA[Real Estate WordPress Themes]]></category>
		<category><![CDATA[Realtor Themes]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=111</guid>
		<description><![CDATA[The internet has caused a lot of changes in how homes are bought and sold.  These days people go online to shop for new homes, so it is important for Realtors to have all of their properties listed online.   A popular trend seems to be listing properties using the WordPress blogging software, and their are [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/church-wordpress-themes/' rel='bookmark' title='Permanent Link: Impressive Church WordPress Themes'>Impressive Church WordPress Themes</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>The internet has caused a lot of changes in how homes are bought and sold.  These days people go online to shop for new homes, so it is important for Realtors to have all of their properties listed online.   A popular trend seems to be listing properties using the WordPress blogging software, and their are a ton of great real estate themes available for Realtors to use!</p>
<p>Below we&#8217;ve gone out and collected our favorite real estate themes and provided you with screen shots and information on where you can go to get a hold of one of these designs.   Each design should include a control panel to easily setup your design and will also include a variety of features built in specifically for Realtors to use.  Examples include the ability to upload maps to the property, videos tours can be added, etc.</p>
<h3><strong>Agent WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-114" title="agent-wordpress-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/agent-wordpress-theme.png" alt="agent-wordpress-theme" width="500" height="527" /></p>
<p>Multiple-Use ($59.95), All StudioPress Themes ($199.95)</p>
<p><a href="http://blogtuts.com/go/rev.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/rev.php"><strong>Purchase</strong></a><span id="more-111"></span></p>
<h3><strong>Smooth Real Estate WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-115" title="smooth-real-estate-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/smooth-real-estate-theme.jpg" alt="smooth-real-estate-theme" width="500" height="768" /></p>
<p>Single-Use ($119.95), Multiple-Use ($189.95), Developer&#8217;s Pack ($289.95)</p>
<p><a href="http://blogtuts.com/go/gorilla.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/gorilla.php"><strong>Purchase</strong></a></p>
<h3><strong>Bel Air Realtor Theme</strong></h3>
<p><img class="alignnone size-full wp-image-116" title="bel-air-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/bel-air-theme.jpg" alt="bel-air-theme" width="500" height="792" /></p>
<p>Single-Use ($79.99), Multiple-Use ($149.99), Developer&#8217;s Pack ($349.99)</p>
<p><a href="http://blogtuts.com/go/wprealtor.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/wprealtor.php"><strong>Purchase</strong></a></p>
<h3><strong>WP Pro Real Estate WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-118" title="real-estate-theme-forest" src="http://blogtuts.com/wp-content/uploads/2009/08/real-estate-theme-forest.jpg" alt="real-estate-theme-forest" width="500" height="441" /></p>
<p>Multiple-Use ($25.00)</p>
<p><a href="http://blogtuts.com/go/themeforest.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/themeforest.php"><strong>Purchase</strong></a></p>
<h3><strong>Open House Theme</strong></h3>
<p><img title="open-house-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/open-house-theme.jpg" alt="open-house-theme" width="500" height="1196" /></p>
<p>Single-Use ($79.95), Multiple-Use ($149.95), Developer&#8217;s Pack ($249.95)</p>
<p><strong><a href="http://blogtuts.com/go/gorilla.php">Source/Demo</a> | <a href="http://blogtuts.com/go/gorilla.php">Purchase</a></strong></p>
<h3><strong>iReal Estate Theme</strong></h3>
<p><img class="alignnone size-full wp-image-119" title="ireal-estate-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/ireal-estate-theme.jpg" alt="ireal-estate-theme" width="500" height="379" /></p>
<p>Multiple-Use ($59.95)</p>
<p><a href="http://blogtuts.com/go/ithemes.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/ithemes.php"><strong>Purchase</strong></a></p>
<h3><strong>Colonial Real Estate WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-120" title="colonial-real-estate-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/colonial-real-estate-theme.jpg" alt="colonial-real-estate-theme" width="500" height="463" /></p>
<p>Multiple-Use ($79.95), Developer&#8217;s Pack ($199.95)</p>
<p><a href="http://blogtuts.com/go/realestate.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/realestate.php"><strong>Purchase</strong></a></p>
<h3><strong>Sources:</strong></h3>
<ul>
<li><strong><a href="http://realestatethemes.net/">Real Estate Themes</a></strong></li>
</ul>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=111&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/church-wordpress-themes/' rel='bookmark' title='Permanent Link: Impressive Church WordPress Themes'>Impressive Church WordPress Themes</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/real-estate-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impressive Church WordPress Themes</title>
		<link>http://blogtuts.com/church-wordpress-themes/</link>
		<comments>http://blogtuts.com/church-wordpress-themes/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 02:09:17 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Church Templates]]></category>
		<category><![CDATA[Church Themes]]></category>
		<category><![CDATA[Church WordPress Themes]]></category>
		<category><![CDATA[Free Church Themes]]></category>
		<category><![CDATA[Premium Church Themes]]></category>
		<category><![CDATA[Premium WordPress Themes]]></category>
		<category><![CDATA[Religious Templates]]></category>
		<category><![CDATA[WordPress Church Themes]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=102</guid>
		<description><![CDATA[For religious websites or blogs, it has never been easier to create a holy feel to your websites that use WordPress!   WordPress theme designers have been hard at work building church templates which could be used for a variety of purposes, ranging from building a personal website to getting a ready-to-use church template for a [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/real-estate-wordpress-themes/' rel='bookmark' title='Permanent Link: Professional Real Estate WordPress Themes'>Professional Real Estate WordPress Themes</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>For religious websites or blogs, it has never been easier to create a holy feel to your websites that use WordPress!   WordPress theme designers have been hard at work building church templates which could be used for a variety of purposes, ranging from building a personal website to getting a ready-to-use church template for a church that wants to provide information about their organization (examples include hours, sermon times, maps and contact information, events, blog posts, etc).</p>
<p>Below you&#8217;ll find we&#8217;ve gathered a variety of church templates which are already available for anyone to use.   Once purchased, these themes should all include control panels which allow the user to help avoid having to deal with code, and many include other advanced features.</p>
<h3><strong>Grace Church WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-103" title="grace-church-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/grace-church-theme.jpg" alt="grace-church-theme" width="500" height="583" /></p>
<p>Single-Use ($59.00), Developer&#8217;s Pack ($159.00)</p>
<p><a href="http://blogtuts.com/go/ptnet.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/ptnet.php"><strong>Purchase</strong></a><span id="more-102"></span></p>
<h3><strong>Church WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-104" title="church-wordpress-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/church-wordpress-theme.jpg" alt="church-wordpress-theme" width="500" height="768" /></p>
<p>Multiple-Use ($59.95), All StudioPress Themes ($199.95)</p>
<p><a href="http://blogtuts.com/go/rev.php"><strong>Source/Demo</strong></a> | <a href="http://blogtuts.com/go/rev.php"><strong>Purchase</strong></a></p>
<h3><strong>bChurch WordPress Theme</strong></h3>
<p><img title="bchurch-wordpress-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/bchurch-wordpress-theme.jpg" alt="bchurch-wordpress-theme" width="500" height="556" /></p>
<p>Multiple-Use ($79.95), Developer&#8217;s Pack ($149.95)</p>
<p><strong><a href="http://blogtuts.com/go/ithemes.php">Source/Demo</a> | <a href="http://blogtuts.com/go/ithemes.php">Purchase</a></strong></p>
<h3><strong>WordPress Church Theme</strong></h3>
<p><img class="alignnone size-full wp-image-106" title="wordpress-church-theme-forest" src="http://blogtuts.com/wp-content/uploads/2009/08/wordpress-church-theme-forest.jpg" alt="wordpress-church-theme-forest" width="500" height="523" /></p>
<p>Multiple-Use ($20.00)</p>
<p><strong><a href="http://blogtuts.com/go/themeforest.php">Source/Demo</a> | <a href="http://blogtuts.com/go/themeforest.php">Purchase</a></strong></p>
<h3><strong>Springs Religious WordPress Theme</strong></h3>
<p><img class="alignnone size-full wp-image-107" title="springs-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/springs-theme.jpg" alt="springs-theme" width="500" height="493" /></p>
<p>Multiple-Use ($79.95), Developer&#8217;s Pack ($149.95)</p>
<p><strong><a href="http://blogtuts.com/go/church.php">Source/Demo</a> | <a href="http://blogtuts.com/go/church.php">Purchase</a></strong></p>
<h3><strong>Church Life WordPress Theme</strong></h3>
<p><img title="church-life-theme" src="http://blogtuts.com/wp-content/uploads/2009/08/church-life-theme.jpg" alt="church-life-theme" width="500" height="333" /></p>
<p>Multiple-Use ($79.95), Developer&#8217;s Pack ($149.95)</p>
<p><a href="http://blogtuts.com/go/ithemes.php"><strong>Source/Demo</strong></a><strong> | </strong><a href="http://blogtuts.com/go/ithemes.php"><strong>Purchase</strong></a></p>
<h3><strong>Sources:</strong></h3>
<ul>
<li><a href="http://churchthemes.com/"><strong>Church Themes</strong></a></li>
</ul>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=102&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/real-estate-wordpress-themes/' rel='bookmark' title='Permanent Link: Professional Real Estate WordPress Themes'>Professional Real Estate WordPress Themes</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/church-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Tuts Gets New Design Courtesy of CustomTheme.com</title>
		<link>http://blogtuts.com/blog-tuts-custom-wordpress-theme/</link>
		<comments>http://blogtuts.com/blog-tuts-custom-wordpress-theme/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 02:06:14 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Blog Tips]]></category>
		<category><![CDATA[Custom Theme]]></category>
		<category><![CDATA[Custom WordPress Theme]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=98</guid>
		<description><![CDATA[Though Blog Tutorials is fairly new, I have big plans for the future of this website and decided that I wanted a solid design that would show that commitment to our readers.  As a result, I decided to work with the team at Custom Theme to get a custom design in place.
After about a week [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Though <a href="http://blogtuts.com/">Blog Tutorials</a> is fairly new, I have big plans for the future of this website and decided that I wanted a solid design that would show that commitment to our readers.  As a result, I decided to work with the team at <a href="http://customtheme.com/">Custom Theme</a> to get a custom design in place.</p>
<p>After about a week of development between design and coding, the new theme is ready and loaded!  Here is a screen shot of the new homepage:</p>
<p><img class="alignnone size-full wp-image-99" title="blog-tuts" src="http://blogtuts.com/wp-content/uploads/2009/08/blog-tuts.jpg" alt="blog-tuts" width="500" height="1478" /></p>
<p>What do you think?   Let me know in the comments!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=98&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/blog-tuts-custom-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Blogger Themes, Widgets, Tutorials &amp; Other Resources</title>
		<link>http://blogtuts.com/blogger-tutorials/</link>
		<comments>http://blogtuts.com/blogger-tutorials/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 16:10:50 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Blogger Themes]]></category>
		<category><![CDATA[Blogger Tutorials]]></category>
		<category><![CDATA[Blogger Designs]]></category>
		<category><![CDATA[Blogger Hacks]]></category>
		<category><![CDATA[Blogger Plugins]]></category>
		<category><![CDATA[Blogger Resources]]></category>
		<category><![CDATA[Blogger Sitemap]]></category>
		<category><![CDATA[Blogger Templates]]></category>
		<category><![CDATA[Blogger Tips]]></category>
		<category><![CDATA[Blogger Widgets]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=90</guid>
		<description><![CDATA[Although Blogger isn&#8217;t as popular as it used to be, it is still a great alternative for people who want to have their own blog without any cost or technical knowledge needed.  Once you have a blog together, you may want to spend a few moments customizing it by improving the design, adding custom widgets, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Although <a href="http://blogger.com/">Blogger</a> isn&#8217;t as popular as it used to be, it is still a great alternative for people who want to have their own blog without any cost or technical knowledge needed.  Once you have a blog together, you may want to spend a few moments customizing it by improving the design, adding custom widgets, or hacking the code to make things function the way you want it to.</p>
<p>While scouring the internet, we came up with a number of great resources for Bloggers users, which we&#8217;ve collected below.</p>
<h3><strong>How to Build a Better Blogger Template Series:</strong></h3>
<ul>
<li><a href="http://dzelque.blogspot.com/2007/05/structure-of-blogger-template.html">The Structure of a Blogger Template</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/structure-of-blogger-template-code.html">The Structure of a Blogger Template Code</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/structure-of-css-styling-section.html">The Structure of CSS Styling Section</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/setting-properties-of-container.html">Setting the Properties of a Container</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/common-containers-and-elements-in.html">Common Containers and Elements in a Blogger Template</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/using-generic-blogger-template.html">Using the Generic Blogger Template</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/setting-template-size.html">Setting the Template Size</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/body-section-of-blogger-template-code.html">The Body Section of the Blogger Template Code</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/more-explanation-about-body-code.html">More Explanation about the Body Code</a></li>
<li><a href="http://dzelque.blogspot.com/2007/06/making-3-column-template-and-more.html">Making a 3-Column Template </a></li>
<li><a href="http://dzelque.blogspot.com/2007/07/starting-your-own-blogger-template.html">Starting Your Own Blogger Template</a></li>
<li><a href="http://dzelque.blogspot.com/2007/07/how-to-use-images-as-background.html">How To Embed Images as Background</a><span id="more-90"></span></li>
</ul>
<h3><strong>Find Pre-Built Blogger Themes/Templates:</strong></h3>
<ul>
<li><a href="http://best-free-blogger-blogspot-templates.blogspot.com/">Best Free Blogger Blogspot Templates</a></li>
<li><a href="http://www.blogcrowds.com/resources/blogger-templates/">Blogcrowds</a></li>
<li><a href="http://www.bloggerthemes.net/">Blogger Themes</a></li>
<li><a href="http://btemplates.com/">Btemplates</a></li>
<li><a href="http://www.eblogtemplates.com/">Eblogtemplates</a></li>
<li><a href="http://falconhive.com/">Falconhive</a></li>
<li><a href="http://www.ipietoon.com/">Ipietoon</a></li>
<li><a href="http://www.ourblogtemplates.com/">OurBlogTemplates</a></li>
<li><a href="http://www.template-godown.com/">Template-GoDown</a></li>
<li><a href="http://top-free-blogger-templates.blogspot.com/">Top Free Blogger Templates</a></li>
</ul>
<h3><strong>Blogger Widgets and Plugins:</strong></h3>
<ul>
<li><a href="http://chethstudios.blogspot.com/2009/06/spoonfed-seo-guide-for-blogger-users.html">How to Add a Sitemap to Blogger</a></li>
<li><a href="http://www.bloggerplugins.org/2008/06/top-commentators-widget-for-blogger.html">Top Commentators Widget</a></li>
<li><a href="http://www.bloggerplugins.org/2008/06/blog-tanslation-widget-for-blogger.html">Translation Widget</a></li>
<li><a href="http://www.bloggerplugins.org/2007/11/recent-posts-widget-plugin_25.html">Recent Post Widget</a></li>
<li><a href="http://www.bloggerplugins.org/2007/11/recent-comments-widget-plugin_25.html">Recent Comments Widget</a></li>
<li><a href="http://www.bloggerplugins.org/2007/08/u-comment-i-follow.html">U Comment I Follow Widget</a></li>
<li><a href="http://phy3blog.googlepages.com/Beta-Blogger-Label-Cloud.html">Label Cloud Plugin</a></li>
<li><a href="http://purplemoggy.blogspot.com/2007/04/blogger-calendar-archive.html">Archive Calendar Widget</a></li>
<li><a href="http://phydeaux3.blogspot.com/2007/04/blogger-archive-calender.html">Archive Calendar Widget</a></li>
<li><a href="http://itde.vccs.edu/rss2js/build.php">Recent Posts Widget</a></li>
<li><a href="http://blogger-templates.blogspot.com/2007/03/recent-comments.html">Recent Comments Widgets</a></li>
<li><a href="http://blogger-templates-designs.blogspot.com/2008/10/how-to-picasa-web-albums-slideshow-with.html">Picasa Web Albums Slideshow Widget</a></li>
<li><a href="http://blogger-templates-designs.blogspot.com/2008/10/widgets-add-search-form-in-blogger.html">Search Form Widget</a></li>
<li><a href="http://blogger-templates-designs.blogspot.com/2008/10/widgets-add-google-talk-to-your-blogger.html">Google Talk Widget</a></li>
<li><a href="http://blogger-templates-designs.blogspot.com/2008/10/plugins-recent-comments-widgets-in.html">Recent Comments Widget</a></li>
<li><a href="http://blogger-templates-designs.blogspot.com/2008/10/sudoku-widgets-generates-random-puzzles.html">Sudoku Game Widget</a></li>
<li><a href="http://www.madtomatoe.com/google-translate-mini-flags-widget/">Google Translate Mini-Flags Widget</a></li>
<li><a href="http://www.madtomatoe.com/recent-comments-widget-for-blogger/">Recent Comments Widgets</a></li>
<li><a href="http://themelib.com/2008/11/reactions-blogger-widget-a-mini-poll-for-your-blog/">Reactions Mini-Poll Widget</a></li>
<li><a href="http://www.techknowl.com/2008/11/alexa-traffic-widget-for-blogger-with.html">Alexa Traffic Widget</a></li>
<li><a href="http://www.techknowl.com/2008/12/snow-flakes-widget-in-blogger.html">Snow Flakes Widget</a></li>
<li><a href="http://www.techknowl.com/2008/12/show-popular-posts-on-blogger.html">Popular Posts Widget</a></li>
<li><a href="http://www.techknowl.com/2008/10/flash-mp3-music-player-code-for.html">Flash MP3 Player Widget</a></li>
<li><a href="http://www.outbrain.com/get/ratings">Rating Widget by Outbrain</a></li>
<li><a href="http://beautifulbeta.blogspot.com/2007/04/blogtoc-widget-released.html">Multi-tab TOC Widget</a></li>
<li><a href="http://hoctro.blogspot.com/2007/05/introducing-tabview-widget.html">Tab View Widget </a></li>
<li><a href="http://freeyasoul.blogspot.com/2006/10/random-rotating-banner-hack.html">Random/Rotating Banner Widget</a></li>
<li><a href="http://blog.lasvak.com/2008/10/socialbookmarking-blogger-widget/">Social Bookmarking Widget </a></li>
<li><a href="http://www.etienneteo.com/2007/07/bloggers-buy-me-beer-paypal-donation.html">Paypal Donation Widgets</a></li>
<li><a href="http://www.talkr.com/partners/index.html">Podcating Plugin</a></li>
<li><a href="http://www.eblogtemplates.com/how-to-create-a-whats-next-post-footer-section/">What&#8217;s Next? Section Widget</a></li>
<li><a href="http://www.bloggerbuster.com/2008/04/add-customized-twitter-widget-to-your.html">Twitter Profile Widget</a></li>
<li><a href="http://www.sociofluid.com/blogger-widget.php">Bookmarking Widget</a></li>
</ul>
<h3><strong>Blogger Hacks:</strong></h3>
<ul>
<li><a href="http://www.makeuseof.com/tag/top-10-blogger-hacks-and-tips/">Top 10 Blogger Hacks and Tips</a></li>
</ul>
<h3><strong>Other Blogger Resources:</strong></h3>
<ul>
<li><a href="http://chethstudios.blogspot.com/2009/08/top-40-blogger-tutorials-roundup.html">40 Blogger Tutorials</a></li>
<li><a href="http://blogs.mysites-advisor.com/2007/09/10/18-photoshop-tutorials/">18 Photoshop Tutorials for Bloggers</a></li>
</ul>
<p>Know of some resources that belong on this list?   Please <a href="http://blogtuts.com/contact/">let us know</a>!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=90&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/blogger-tutorials/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Code: Display Last Modified Date in WordPress</title>
		<link>http://blogtuts.com/last-modified-date-code-wordpress/</link>
		<comments>http://blogtuts.com/last-modified-date-code-wordpress/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:29:32 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Last Modified Date]]></category>
		<category><![CDATA[WordPress Code]]></category>
		<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=77</guid>
		<description><![CDATA[If you run a website or blog professionally, it is always good business practice to update your older posts to keep them as valid and current as possible.   This helps retain (or even grow) their search engine positions, and helps keep your blog from having dead links or outdated content. 
One of the things I recommend [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-category-archives/' rel='bookmark' title='Permanent Link: Code: Display Categories and Archives in WordPress'>Code: Display Categories and Archives in WordPress</a></li>
<li><a href='http://blogtuts.com/code-adding-edit-buttons-to-wordpress/' rel='bookmark' title='Permanent Link: Code: Adding Edit Buttons to WordPress'>Code: Adding Edit Buttons to WordPress</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>If you run a website or blog professionally, it is always good business practice to update your older posts to keep them as valid and current as possible.   This helps retain (or even grow) their search engine positions, and helps keep your blog from having dead links or outdated content. </p>
<p>One of the things I recommend readers do on these types of blogs which use WordPress is to adjust the date field to instead show the last modified date.   This way posts that were written two years ago won&#8217;t have that date if you&#8217;ve updated them more recently!</p>
<p>Here is the code you&#8217;ll need to easily accomplish this.   As always, you&#8217;ll want to make a backup of your single.php file (or any files you will be changing) before proceeding.</p>
<p><span id="more-77"></span>Locate the following code in your template (may not look <em>exactly</em> like this):</p>
<p><code>Posted on: &lt;?php the_time('l, F jS, Y') ?&gt;</code></p>
<p>Now replace it with the following code:</p>
<p><code>Posted on &lt;?php the_time('F jS, Y') ?&gt;<br />
&lt;?php $u_time = get_the_time('U');<br />
$u_modified_time = get_the_modified_time('U');<br />
if ($u_modified_time != $u_time) {<br />
echo "and last modified on ";<br />
the_modified_time('F jS, Y');<br />
echo ". "; } ?&gt;</code></p>
<p>Now your posts should show the last modified date immediately after the original posting date, rather than just showing the original post date!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=77&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-category-archives/' rel='bookmark' title='Permanent Link: Code: Display Categories and Archives in WordPress'>Code: Display Categories and Archives in WordPress</a></li>
<li><a href='http://blogtuts.com/code-adding-edit-buttons-to-wordpress/' rel='bookmark' title='Permanent Link: Code: Adding Edit Buttons to WordPress'>Code: Adding Edit Buttons to WordPress</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/last-modified-date-code-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-To: Display Most Recent Twitter Entry on Your WordPress Blog</title>
		<link>http://blogtuts.com/most-recent-twitter-entry-wordpress-code/</link>
		<comments>http://blogtuts.com/most-recent-twitter-entry-wordpress-code/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:22:59 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Most Recent Tweets]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter Code]]></category>
		<category><![CDATA[Twitter WordPress]]></category>
		<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=75</guid>
		<description><![CDATA[Proud of your tweets?   Maybe you run a business blog and would like to integrate your Twitter feed?   For WordPress users, adding your most recent tweet to your WordPress blog is actually very easy.   Simply add a little code snippet in your blog&#8217;s sidebar where you want to display your most recent tweet, then add [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/twitter-tweet-this-button-code/' rel='bookmark' title='Permanent Link: Code: Add a &#8220;Tweet This&#8221; Button'>Code: Add a &#8220;Tweet This&#8221; Button</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>Proud of your tweets?   Maybe you run a business blog and would like to integrate your Twitter feed?   For WordPress users, adding your most recent tweet to your WordPress blog is actually very easy.   Simply add a little code snippet in your blog&#8217;s sidebar where you want to display your most recent tweet, then add your Twitter username!</p>
<p>Here is the code you’ll need to easily add the most recent Twitter entry:<span id="more-75"></span></p>
<p><code>&lt;?php<br />
// Your twitter username.<br />
$username = "TwitterUsername";<br />
// Prefix - some text you want displayed before your latest tweet.<br />
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")<br />
$prefix = "";<br />
// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)<br />
$suffix = "";<br />
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&amp;rpp=1";<br />
function parse_feed($feed) {<br />
$stepOne = explode("&lt;content type=\"html\"&gt;", $feed);<br />
$stepTwo = explode("&lt;/content&gt;", $stepOne[1]);<br />
$tweet = $stepTwo[0];<br />
$tweet = str_replace(”&amp;lt;”, “&lt;”, $tweet);<br />
$tweet = str_replace(”&amp;gt;”, “&gt;”, $tweet);<br />
return $tweet;<br />
}<br />
$twitterFeed = file_get_contents($feed);<br />
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);<br />
?&gt;</code></p>
<p>Simply add your Twitter username where it says &#8220;TwitterUsername&#8221; in the code above!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=75&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/twitter-tweet-this-button-code/' rel='bookmark' title='Permanent Link: Code: Add a &#8220;Tweet This&#8221; Button'>Code: Add a &#8220;Tweet This&#8221; Button</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/most-recent-twitter-entry-wordpress-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How-To: Prevent Google from Indexing Your Images</title>
		<link>http://blogtuts.com/prevent-google-indexing-images/</link>
		<comments>http://blogtuts.com/prevent-google-indexing-images/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:13:05 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Google Images]]></category>
		<category><![CDATA[Google Indexing]]></category>
		<category><![CDATA[Prevent Images from Indexing]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=73</guid>
		<description><![CDATA[For most bloggers, traffic and monetization is the driving force behind our blogs and motivation to blog.  Therefore, why would someone who operates any image-heavy blog who would want to prevent a lot of potential traffic from Google&#8217;s image search?
There are actually a number of reasons bloggers would want to keep their pictures from being indexed [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>For most bloggers, traffic and monetization is the driving force behind our blogs and motivation to blog.  Therefore, why would someone who operates any image-heavy blog who would want to prevent a lot of potential traffic from Google&#8217;s image search?</p>
<p>There are actually a number of reasons bloggers would want to keep their pictures from being indexed by Google, a few examples being bloggers who like to post personal pictures, or custom make their pictures and don&#8217;t want others to take them.<span id="more-73"></span></p>
<p>If you feel that you fit into this category, Google has made it very easy for you to opt out of having your images indexed.  Simply place the following code into your blog&#8217;s header file above the &lt; /head &gt; tag:</p>
<p><code>&lt;meta name="robots" content="noimageindex"&gt;</code></p>
<p>If your site has a problem with people taking your content (including the pictures) via scrapers, etc., then there is a chance Google will still index them when they index that person&#8217;s website. Another route you can take is to place images into a folder then add a disallow to your Robots.txt file.</p>
<p>If you are a WordPress user, this is fairly easy as by default, as we already have pictures in either our Images folder of our theme, or the uploads folder (unless you&#8217;ve assigned a custom path for your images). You can add something like the following to your Robots.txt file:</p>
<p><code>User-agent: *<br />
Disallow: /images/</code></p>
<p>or</p>
<p><code>User-agent: *<br />
Disallow: /uploads/</code></p>
<p>Any questions? Leave them in the comments!</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=73&type=feed" alt="" />

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/prevent-google-indexing-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code: Adding Edit Buttons to WordPress</title>
		<link>http://blogtuts.com/code-adding-edit-buttons-to-wordpress/</link>
		<comments>http://blogtuts.com/code-adding-edit-buttons-to-wordpress/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:04:18 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Edit Button]]></category>
		<category><![CDATA[Edit WordPress]]></category>
		<category><![CDATA[WordPress Code]]></category>
		<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=70</guid>
		<description><![CDATA[There are a growing number of premium themes on the market these days for WordPress users, many of which are extremely advanced, yet I&#8217;ve found that many designers fail to add some of the most basic things all themes should have.  One of the things many designers forget to do is code &#8221;edit&#8221; buttons on their posts, pages, and comments.  
For [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/add-print-this-button/' rel='bookmark' title='Permanent Link: Code: Add A &#8220;Print This&#8221; Button'>Code: Add A &#8220;Print This&#8221; Button</a></li>
<li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>There are a growing number of <a href="http://premiumthemes.info/">premium themes</a> on the market these days for WordPress users, many of which are extremely advanced, yet I&#8217;ve found that many designers fail to add some of the most basic things all themes should have.  One of the things many designers forget to do is code &#8221;edit&#8221; buttons on their posts, pages, and comments.  </p>
<p>For those unfamilar with these buttons, they only show up for people who are logged into the admin panel (readers can&#8217;t see them).   When clicked, you are routed directly to the post/page or comment within the admin panel so you can edit the post.   It has been my experience that having access to these buttons can save a lot of time when trying to manage and update older posts. </p>
<p><span id="more-70"></span>If you&#8217;d like to add an &#8220;edit&#8221; button on your individual <strong>posts</strong> or <strong>pages</strong>, here is the code you will want to place somewhere in your post and/or page template (usually called single.php and page.php) where you want it to display:</p>
<p><code>&lt;?php edit_post_link(__("**Edit**"), ''); ?&gt;</code></p>
<p>If you&#8217;d like to add an &#8220;edit&#8221; button to your individual <strong>comments</strong>, here is the code you need to place somewhere in your comments loop (usually called comments.php) where you want it to display:</p>
<p><code>&lt;?php edit_comment_link(__("**Edit**"), ''); ?&gt;</code></p>
<p>Don&#8217;t forget that you can also wrap them in a div to control its placement and appearance.</p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=70&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/add-print-this-button/' rel='bookmark' title='Permanent Link: Code: Add A &#8220;Print This&#8221; Button'>Code: Add A &#8220;Print This&#8221; Button</a></li>
<li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/code-adding-edit-buttons-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code: Display Categories and Archives in WordPress</title>
		<link>http://blogtuts.com/wordpress-code-category-archives/</link>
		<comments>http://blogtuts.com/wordpress-code-category-archives/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 21:58:05 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WordPress Archives]]></category>
		<category><![CDATA[WordPress Categories]]></category>
		<category><![CDATA[WordPress Code]]></category>

		<guid isPermaLink="false">http://blogtuts.com/?p=52</guid>
		<description><![CDATA[There has been some debate by bloggers over the past few years as to the value of displaying your archives, with some bloggers going as far as to not even display their categories!    The general idea is that the use of recent posts, popular posts, and a built-in search feature will allow your readers to [...]

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
<li><a href='http://blogtuts.com/code-displaying-updated-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code: Displaying Updated Posts in WordPress'>Code: Displaying Updated Posts in WordPress</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>There has been some debate by bloggers over the past few years as to the value of displaying your archives, with some bloggers going as far as to not even display their categories!    The general idea is that the use of recent posts, popular posts, and a built-in search feature will allow your readers to find what they are looking for.</p>
<p>Well, I for one still believe that categories and archives should be displayed on blogs.   If you&#8217;d like to do the same for a WordPress blog, here is the code you&#8217;ll want to use.   For your convenience, we&#8217;ve provided two options for each:  traditional display and drop-down menus.</p>
<p>Simply paste the WordPress code below in your sidebar.php file where you want the category or archives to display:<span id="more-52"></span></p>
<h3><strong>Display Categories</strong></h3>
<p><code>&lt;h2&gt;Categories&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_list_cats('sort_column=name'); ?&gt;<br />
&lt;/ul&gt;</code></p>
<h3><strong>Display Categories in Drop-Down Box</strong></h3>
<p><code>&lt;form action="&lt;?php bloginfo('url'); ?&gt;/" method="get"&gt;<br />
&lt;?php<br />
$select = wp_dropdown_categories('show_option_none=Select category&amp;show_count=1&amp;orderby=name&amp;echo=0');<br />
$select = preg_replace("#&lt;select([^&gt;]*)&gt;#”, “&lt;select$1 onchange=’return this.form.submit()’&gt;”, $select); echo $select; ?&gt;<br />
&lt;noscript&gt;&lt;input type=”submit” value=”View” /&gt;&lt;/noscript&gt;<br />
&lt;/form&gt;</code></p>
<h3><strong>Display Archives</strong></h3>
<p><code>&lt;h2&gt;Archives&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_get_archives('type=monthly'); ?&gt;<br />
&lt;/ul&gt;</code></p>
<h3><strong>Display Archives in a Drop-Down Box</strong></h3>
<p><code>&lt;select name=\"archive-dropdown\" onChange='document.location.href=this.options[this.selectedIndex].value;’&gt;<br />
&lt;option value=\”\”&gt;&lt;?php echo attribute_escape(__(’Select Month’)); ?&gt;&lt;/option&gt;<br />
&lt;?php wp_get_archives(’type=monthly&amp;format=option&amp;show_post_count=1?); ?&gt; &lt;/select&gt;</code></p>
<img src="http://blogtuts.com/?ak_action=api_record_view&id=52&type=feed" alt="" />

<div class="posts"><h3>Related Posts</h3></div><ul><li><a href='http://blogtuts.com/wordpress-code-recent-comments-top-commentators/' rel='bookmark' title='Permanent Link: Code: Add Recent Comments and Top Comments to WordPress'>Code: Add Recent Comments and Top Comments to WordPress</a></li>
<li><a href='http://blogtuts.com/code-displaying-updated-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code: Displaying Updated Posts in WordPress'>Code: Displaying Updated Posts in WordPress</a></li>
<li><a href='http://blogtuts.com/code-how-to-display-recent-posts-in-wordpress/' rel='bookmark' title='Permanent Link: Code:  How to Display Recent Posts in WordPress'>Code:  How to Display Recent Posts in WordPress</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blogtuts.com/wordpress-code-category-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.032 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-10 18:03:14 -->
