<?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>John Nasta &#187; tutorials</title>
	<atom:link href="http://johnnasta.com/blog/tags/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://johnnasta.com/blog</link>
	<description>any major dude with half a heart surely will tell you my friend</description>
	<lastBuildDate>Wed, 14 Jul 2010 22:35:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Advanced Customizing of Atahualpa WordPress Theme</title>
		<link>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/</link>
		<comments>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 22:43:03 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[Atahualpa]]></category>
		<category><![CDATA[customizations]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[customizing]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=592</guid>
		<description><![CDATA[Atahualpa from Bytes For All just might be the most impressive free WordPress theme available to date. Much like the Thesis theme from DIY Themes, you get a complete back-end interface for customizing the theme. However, Thesis starts at $87 for the Personal license, and Atahualpa is free. The most important thing to know about [...]


Related posts:<ol><li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/' rel='bookmark' title='Permanent Link: WordPress &#8211; Avoiding Microsoft code in posts &#038; pages'>WordPress &#8211; Avoiding Microsoft code in posts &#038; pages</a> <small>Those of you who like to copy &amp; paste your posts from Microsoft Word have...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress-themes/arinesce-free-wordpress-themes-beta-now-available/' rel='bookmark' title='Permanent Link: Arinesce Free WordPress Theme Beta 3 Now Available'>Arinesce Free WordPress Theme Beta 3 Now Available</a> <small>Arinesce is a simple fixed width two column, left sidebar, widget ready WordPress theme that...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/themes/atahualpa" target="_blank">Atahualpa</a> from <a href="http://wordpress.bytesforall.com/" target="_blank">Bytes For All</a> just might be the most impressive free WordPress theme available to date.</p>
<p>Much like the <a href="http://diythemes.com/" target="_blank">Thesis</a> theme from DIY Themes, you get a complete back-end interface for customizing the theme. However, Thesis starts at $87 for the Personal license, and Atahualpa is free.</p>
<p>The most important thing to know about how to customize Atahualpa is that you can create your own PHP templates for pages such as multi-post archives (including category &amp; tag pages), search results, single posts, etc. People are often confused by the fact that the theme does not come with templates such as archive.php, search.php, single.php and others that you might expect, but what is not entirely obvious is that you can create these templates and upload them, and WordPress will automatically use them.</p>
<p><span id="more-592"></span></p>
<p>Take for instance one of the most popular questions asked about customizing Atahualpa in the <a href="http://forum.bytesforall.com/" target="_blank">BFA Forum</a>. How do I get Atahualpa to display full posts on archive pages instead of post excerpts? The answer is diabolically simple. Just download the index.php file from Atahualpa and save it as archive.php. Remove the part of the template that calls in The WordPress Loop:</p>
<p><code>&lt;?php /* This is the actual WordPress LOOP.<br />
The output can be edited at Atahualpa Theme Options -&gt; Style &#038; edit the Center column */<br />
bfa_center_content($bfa_ata['content_inside_loop']); ?&gt;</code></p>
<p>and replace it with loop code from the archive.php of a theme that displays full posts on the archive pages, such as the WordPress Default theme:</p>
<p><code>&lt;div &lt;?php post_class() ?&gt;&gt;<br />
				&lt;h3 id="post-&lt;?php the_ID(); ?&gt;"&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title_attribute(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />
				&lt;small&gt;&lt;?php the_time('l, F jS, Y') ?&gt;&lt;/small&gt;<br />
				&lt;div class="entry"&gt;<br />
					&lt;?php the_content() ?&gt;<br />
				&lt;/div&gt;<br />
				&lt;p class="postmetadata"&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?&gt;&lt;/p&gt;<br />
			&lt;/div&gt;</code></p>
<p>You can edit this code as well. One thing you might want to do is replace <code>&lt;div class="entry"&gt;</code> with <code>&lt;div class="post-bodycopy"&gt;</code> so that the body text will follow the styling guidelines set by Atahualpa.</p>
<p>If you don&#8217;t want to display the time &amp; date above the post, simply move or remove <code>&lt;small&gt;&lt;?php the_time('l, F jS, Y') ?&gt;&lt;/small&gt;</code>. If you don&#8217;t want the meta data to appear below your posts, simply remove that whole paragraph.</p>
<p>If you are familiar with WordPress coding, then you know that <code>&lt;?php the_content() ?&gt;</code> is what displays the full post content.</p>
<p>When you are finished editing, just upload your new file and WordPress will recognize and use it.</p>
<p>This also applies to using plugins that require you to add a piece of PHP code to one of your template files that Atahualpa does not come with. If the template doesn&#8217;t exist, just create it, upload it, and WordPress will use it.</p>
<p>Diabolically simple, yet not obvious&#8230;</p>
<h6>This article copyright © John Nasta 2010 – All Rights Reserved</h6>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share This!</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;partner=sociable" title="Print"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F" title="Twitter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;t=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="Facebook"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t" title="LinkedIn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;t=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="MySpace"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;annotation=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t" title="Google Bookmarks"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;bodytext=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t" title="Digg"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;submitHeadline=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;submitSummary=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F" title="Technorati"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t" title="MSN Reporter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="Live"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;notes=Atahualpa%20from%20Bytes%20For%20All%20just%20might%20be%20the%20most%20impressive%20free%20Wordpress%20theme%20available%20to%20date.%0D%0A%0D%0AMuch%20like%20the%20Thesis%20theme%20from%20DIY%20Themes%2C%20you%20get%20a%20complete%20back-end%20interface%20for%20customizing%20the%20theme.%20However%2C%20Thesis%20starts%20at%20%2487%20for%20t" title="del.icio.us"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="StumbleUpon"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="DZone"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="LinkArena"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkarena.png" title="LinkArena" alt="LinkArena" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F" title="Fark"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="Blogosphere News"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F" title="Propeller"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="Mixx"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F" title="Sphinn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2010%2Fwordpress%2Fadvanced-customizing-of-atahualpa-wordpress-theme%2F&amp;title=Advanced%20Customizing%20of%20Atahualpa%20Wordpress%20Theme" title="Reddit"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-avoiding-microsoft/' rel='bookmark' title='Permanent Link: WordPress &#8211; Avoiding Microsoft code in posts &#038; pages'>WordPress &#8211; Avoiding Microsoft code in posts &#038; pages</a> <small>Those of you who like to copy &amp; paste your posts from Microsoft Word have...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress-themes/arinesce-free-wordpress-themes-beta-now-available/' rel='bookmark' title='Permanent Link: Arinesce Free WordPress Theme Beta 3 Now Available'>Arinesce Free WordPress Theme Beta 3 Now Available</a> <small>Arinesce is a simple fixed width two column, left sidebar, widget ready WordPress theme that...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2010/wordpress/advanced-customizing-of-atahualpa-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress tips &amp; tutorials</title>
		<link>http://johnnasta.com/blog/2009/wordpress/wordpress-tips-tutorials/</link>
		<comments>http://johnnasta.com/blog/2009/wordpress/wordpress-tips-tutorials/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 20:43:13 +0000</pubDate>
		<dc:creator>John Nasta</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://johnnasta.com/blog/?p=237</guid>
		<description><![CDATA[WordPress Tutorials/Hacks 1. WordPress Theme Hacks (Source: Web Designer Wall) 2. Removed by author. 3. Create a Dynamic Sticky (Source: Maxpower) 4. Styling Individual Posts Using the_ID (Source: WP Designer) 5. Show Category Images (Source: JTPratt) 6. Separate WordPress Comments and Trackbacks (Source: Hack WordPress) 7. Customize your WordPress Login (Source: David Airey) 8. Date [...]


Related posts:<ol><li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/a-quick-and-easy-way-to-make-photo-galleries-for-wordpress-using-photo-shop/' rel='bookmark' title='Permanent Link: A Quick And Easy Way To Make Photo Galleries For WordPress'>A Quick And Easy Way To Make Photo Galleries For WordPress</a> <small>Do you want to make photo galleries for WordPress at lightning speed? Do you have...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>WordPress Tutorials/Hacks</h3>
<p>1. <a onclick="javascript:urchinTracker('/outbound/www.webdesignerwall.com/tutorials/wordpress-theme-hacks/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.webdesignerwall.com/tutorials/wordpress-theme-hacks/">WordPress Theme Hacks</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.webdesignerwall.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.webdesignerwall.com/">Web Designer Wall</a>)</p>
<p>2. Removed by author.</p>
<p>3. <a onclick="javascript:urchinTracker('/outbound/www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/">Create a Dynamic Sticky</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.maxpower_ca?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.maxpower.ca/">Maxpower</a>)</p>
<p>4. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2007/06/12/styling-individual-posts-using-the_id/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2007/06/12/styling-individual-posts-using-the_id/">Styling Individual Posts Using the_ID</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>5. <a onclick="javascript:urchinTracker('/outbound/www.jtpratt.com/2008/01/04/very-easy-wordpress-theme-hack-show-category-images/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.jtpratt.com/very-easy-wordpress-theme-hack-show-category-images/">Show Category Images</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.jtpratt.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.jtpratt.com/">JTPratt</a>)</p>
<p>6. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/">Separate WordPress Comments and Trackbacks</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack  WordPress</a>)</p>
<p>7. <a onclick="javascript:urchinTracker('/outbound/www.davidairey.com/customize-your-wordpress-login/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.davidairey.com/customize-your-wordpress-login/">Customize your WordPress Login</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.davidairey.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.davidairey.com/">David Airey</a>)</p>
<p><span id="more-237"></span>8. <a onclick="javascript:urchinTracker('/outbound/www.yugatech.com/blog/wordpress/wp-date-image-hack/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.yugatech.com/blog/wordpress/wp-date-image-hack/">Date Image Hack</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.yugatech.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.yugatech.com/">YugaTech</a>)</p>
<p>9. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2007/07/09/how-to-place-a-login-form-in-the-sidebar/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2007/07/09/how-to-place-a-login-form-in-the-sidebar/">How to place a login form in the sidebar</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>10. <a onclick="javascript:urchinTracker('/outbound/blogs.tech-recipes.com/tipmonkies/2007/07/01/wp-keyboard-shortcuts/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://blogs.tech-recipes.com/tipmonkies/2007/07/01/wp-keyboard-shortcuts/">WP: KeyBoard Shortcuts</a> (Source: <a onclick="javascript:urchinTracker('/outbound/blogs.tech-recipes.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://blogs.tech-recipes.com/">Tip Monkies</a>)</p>
<p>11. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/making-better-use-of-your-error-404-page/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/making-better-use-of-your-error-404-page/">Making Better Use of Your Error “404? Page</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack  WordPress</a>)</p>
<p>12. <a onclick="javascript:urchinTracker('/outbound/www.themeplayground.com/advice-for-your-wordpress-blog-customize-your-404-page?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://themeplayground.com/2007/tutorials/for-wordpress-users/customize-your-404-page/">Customize Your 404 Page</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.themeplayground.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://themeplayground.com/">Theme Playground</a>)</p>
<p>13. <a onclick="javascript:urchinTracker('/outbound/www.brucelawson.co.uk/2005/wordpress-accessibility-hacks/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.brucelawson.co.uk/2005/wordpress-accessibility-hacks/">WordPress accessibility hacks</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.brucelawson.co.uk?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.brucelawson.co.uk/">Bruce Lawson</a>)</p>
<p>14. <a onclick="javascript:urchinTracker('/outbound/www.village-idiot.org/archives/2007/05/22/wp-emergency-password-recovery/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.village-idiot.org/archives/2007/05/22/wp-emergency-password-recovery/">Reset your Lost WordPress Administrator Password</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.village-idiot.org?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.village-idiot.org/">Village Idiot</a>)</p>
<p>15. <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php">The Definitive Guide to Semantic Web Markup for Blogs</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/">Pearsonified</a>)</p>
<p>16. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2007/09/07/do-it-yourself-wordpress-hover-menu/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2007/09/07/do-it-yourself-wordpress-hover-menu/">Do-It-Yourself WordPress Hover Menu (Pop-Up)</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>17. <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/2007/02/how_to_protect_css_mods_for_any_wordpress_theme.php?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/2007/02/how_to_protect_css_mods_for_any_wordpress_theme.php">How to Protect CSS Mods for ANY WordPress Theme</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/">Pearsonified</a>)</p>
<p>18. <em>Removed</em></p>
<p>19. <a onclick="javascript:urchinTracker('/outbound/www.gate303.net/2007/09/25/wordpress-custom-fields-guide/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.gate303.net/2007/09/25/wordpress-custom-fields-guide/">WordPress and the custom fields, a overlooked feature</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.gate303.net?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.gate303.net/">Gate 303</a>)</p>
<p>20. <a onclick="javascript:urchinTracker('/outbound/blog.circlesixdesign.com/2007/01/22/diggproof/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://blog.circlesixdesign.com/2007/01/22/diggproof/">DiggProof your WordPress</a> (Source: <a onclick="javascript:urchinTracker('/outbound/blog.circlesixdesign.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://blog.circlesixdesign.com/">Circle Six Blog</a>)</p>
<p>21. <a onclick="javascript:urchinTracker('/outbound/zeo.unic.net.my/notes/wordpress-ajax-commenting-revisited/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://zeo.unic.net.my/wordpress-ajax-commenting-revisited/">WordPress Ajax Commenting revisited</a> (Source: <a onclick="javascript:urchinTracker('/outbound/zeo.unic.net.my/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://zeo.unic.net.my/">Zeo</a>)</p>
<p>22. <a onclick="javascript:urchinTracker('/outbound/automattic.com/code/widgets/themes/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://automattic.com/code/widgets/themes/">Widgetizing Themes</a> (Source: <a onclick="javascript:urchinTracker('/outbound/automattic.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://automattic.com/">Automattic</a>)</p>
<p>23. <a onclick="javascript:urchinTracker('/outbound/www.plagiarismtoday.com/2006/07/17/cloaking-to-stop-scraping/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.plagiarismtoday.com/2006/07/17/cloaking-to-stop-scraping/">Cloaking to Stop Scraping</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.plagiarismtoday.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.plagiarismtoday.com/">Plagiarism Today</a>)</p>
<p>24. Server load button for blogs (Source: Jesse Chilcott’s Journal)</p>
<p>25. <a onclick="javascript:urchinTracker('/outbound/wordpressgarage.com/tips/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wpgarage.com/tips/giving-each-wordpress-post-a-thumbnail-and-display-the-thumbnail-on-the-home-page/">Giving each WordPress post a thumbnail, and display the thumbnail on the home page</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wordpressgarage.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wpgarage.com/">WordPress Garage</a>)</p>
<p>26. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2007/06/20/how-to-create-overlapping-tabs/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2007/06/20/how-to-create-overlapping-tabs/">How to create overlapping tabs</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>27. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/how-to-optimize-your-wordpress-title/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/how-to-optimize-your-wordpress-title/">How to Optimize Your WordPress Title</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>28. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/how-to-blocking-your-wordpress-categories-and-archives-from-google/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/how-to-blocking-your-wordpress-categories-and-archives-from-google/">Blocking Your WordPress Categories and Archives From Google</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>29. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/how-to-adding-an-author-page-to-your-wordpress-blog/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/how-to-adding-an-author-page-to-your-wordpress-blog/">Adding An Author Page To Your WordPress Blog</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>30. <a onclick="javascript:urchinTracker('/outbound/www.labnol.org/internet/design/how-to-create-mobile-phone-optimized-blog/2132/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.labnol.org/internet/design/how-to-create-mobile-phone-optimized-blog/2132/">Make a Mobile Friendly Version of your Blog with Google Reader</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.labnol.org/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.labnol.org/">Digital Inspiration</a>)</p>
<p>31. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2008/03/01/how-to-use-wordpress-as-a-membership-directory/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2008/03/01/how-to-use-wordpress-as-a-membership-directory/">How to Use WordPress as a Membership Directory</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>32. <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php">How to Format Images for Feed Readers</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/">Pearsonified</a>)</p>
<p>33. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/how-to-adding-delicious-daily-blog-posting-to-your-wordpress-blog/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/how-to-adding-delicious-daily-blog-posting-to-your-wordpress-blog/">Add Del.icio.us Daily Blog Posting To Your WordPress Blog</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>34. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/huge-compilation-of-wordpress-code/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/huge-compilation-of-wordpress-code/">Huge Compilation of WordPress Code</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>35. <a onclick="javascript:urchinTracker('/outbound/wpcandy.com/4-simple-ways-to-speed-up-wordpress/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wpcandy.com/articles/tutorials/4-simple-ways-to-speed-up-wordpress.html">4 Simple ways to Speed up WordPress</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wpcandy.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wpcandy.com/">WP Candy</a>)</p>
<p>36. <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com/2007/06/04/wordpress-date-button/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/2007/06/04/wordpress-date-button/">WordPress Date Button</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.wpdesigner.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wpdesigner.com/">WP Designer</a>)</p>
<p>37. <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com/2006/11/wicked-wordpress-archives-in-one-easy-step.php?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/2006/11/wicked-wordpress-archives-in-one-easy-step.php">Wicked WordPress Archives in One Easy Step! </a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.pearsonified.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.pearsonified.com/">Pearsonified</a>)</p>
<p>38. <a onclick="javascript:urchinTracker('/outbound/wphacks.com/make-yourself-available-to-readers-with-a-contact-form/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/make-yourself-available-to-readers-with-a-contact-form/">Make Yourself Available to Readers with a Contact Form</a> (Source: <a onclick="javascript:urchinTracker('/outbound/wphacks.com?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wphacks.com/">Hack WordPress</a>)</p>
<p>39. <a onclick="javascript:urchinTracker('/outbound/www.graphicdesignblog.co.uk/wordpress-as-a-cms-content-management-system/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.graphicdesignblog.co.uk/wordpress-as-a-cms-content-management-system/">WordPress as a CMS &#8211; Content Management System</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.graphicdesignblog.co.uk?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.graphicdesignblog.co.uk/">Graphic Design Blog</a>)</p>
<p>40. <a onclick="javascript:urchinTracker('/outbound/www.tamba2.org.uk/wordpress/xampp/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.tamba2.org.uk/wordpress/xampp/">Installing Xampp and WordPress (Locally)</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.tamba2.org.uk/wordpress/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.tamba2.org.uk/wordpress/">Tamba 2</a>)</p>
<p>41. <a onclick="javascript:urchinTracker('/outbound/jehiah.cz/archive/wordpress-category-page-hacks?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://jehiah.cz/archive/wordpress-category-page-hacks">WordPress Category Page Hacks</a> (Source: <a onclick="javascript:urchinTracker('/outbound/jehiah.cz/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://jehiah.cz/">Jehiah</a>)</p>
<p>42. <a onclick="javascript:urchinTracker('/outbound/www.seoegghead.com/blog/seo/3-wordpress-hacks-for-se-friendly-blog-archives-p162.html?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.seoegghead.com/blog/seo/3-wordpress-hacks-for-se-friendly-blog-archives-p162.html">3 WordPress Hacks For SE-Friendly Blog Archives</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.seoegghead.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.seoegghead.com/">SEO Egghead</a>)</p>
<p>43. <a onclick="javascript:urchinTracker('/outbound/ajaydsouza.com/archives/2005/04/03/wordpress-tutorial-opening-links-in-new-windows/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://ajaydsouza.com/archives/2005/04/03/wordpress-tutorial-opening-links-in-new-windows/">Opening Links in New Windows</a> (Source: <a onclick="javascript:urchinTracker('/outbound/ajaydsouza.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://ajaydsouza.com/">Ajay</a>)</p>
<p>44. <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/2007/03/28/wordpress-thumbnail-size-limit-hack/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/2007/03/28/wordpress-thumbnail-size-limit-hack/">WordPress Thumbnail Size Limit Hack</a> (Source: <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/">Lorelle on WordPress</a>)</p>
<p>45. <a onclick="javascript:urchinTracker('/outbound/www.tamba2.org.uk/wordpress/restore/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.tamba2.org.uk/wordpress/restore/">Restore your WordPress Database</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.tamba2.org.uk/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.tamba2.org.uk/">Tamba 2</a>)</p>
<p>46. <a onclick="javascript:urchinTracker('/outbound/codex.wordpress.org/Validating_a_Website?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://codex.wordpress.org/Validating_a_Website">Validating WordPress</a> (Source: <a onclick="javascript:urchinTracker('/outbound/codex.wordpress.org/Main_Page?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://codex.wordpress.org/Main_Page">WordPress Codex</a>)</p>
<p>47. <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/2005/09/20/backing-up-wordpress/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/2005/09/20/backing-up-wordpress/">Backing Up WordPress</a> (Source: <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/">Lorelle on WordPress</a>)</p>
<p>48. <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/2005/09/20/backing-up-wordpress/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/2005/09/20/backing-up-wordpress/">Moving Your WordPress Blog to a New Directory</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.bigbizblog.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.bigbizblog.com/">Big Biz Blog</a>)</p>
<p>49. <a onclick="javascript:urchinTracker('/outbound/lorelle.wordpress.com/2005/09/20/backing-up-wordpress/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://lorelle.wordpress.com/2005/09/20/backing-up-wordpress/">Moving Your WordPress Blog to a New Directory</a> (Source: <a onclick="javascript:urchinTracker('/outbound/www.bigbizblog.com/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.bigbizblog.com/">Big Biz Blog</a>)</p>
<h3>WordPress Video Tutorials</h3>
<p>50. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=ocZntJTh7Ik?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=ocZntJTh7Ik">The Best WordPress Plug-ins</a></p>
<p>51. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=NopuJ_OYjsk?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=NopuJ_OYjsk">How to embed YouTube Video in WordPress</a></p>
<p>52. Removed by author</p>
<p>53. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=BiCn6y6JU8o?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=BiCn6y6JU8o">Make Your WordPress Blog Search Engine Friendly</a></p>
<p>54. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=MWYi4_COZMU?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=MWYi4_COZMU">WordPress.com &#8211; Step-by-Step Tutorial on How to Blog</a></p>
<p>55. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=IAi3ZM1h4SY?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=IAi3ZM1h4SY">How To Create A Custom WordPress Page Template</a></p>
<p>56. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=OD4nh5A5up4?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=OD4nh5A5up4">WordPress tutorial–installing on a local server</a></p>
<p>57. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=3SmndwrRkxw?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=3SmndwrRkxw">Recover WordPress Password When You Have Forgotten It</a></p>
<p>58. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=TlEZ_wXtgK0?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=TlEZ_wXtgK0">WordPress Tutorial &#8211; Edit a Sidebar File Using a Text Editor</a></p>
<p>59. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=xyrKFL2nDv8?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=xyrKFL2nDv8">WordPress Tutorial &#8211; Make Menus of Links With the Blogroll 2</a></p>
<p>60. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=r3CadIPEr4M?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=r3CadIPEr4M">How-to: Use WordPress/PodPress to podcast to iTunes</a></p>
<p>61. <a onclick="javascript:urchinTracker('/outbound/uk.youtube.com/watch?v=3wg4MnvDmJY?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.youtube.com/watch?gl=GB&#038;hl=en-GB&#038;v=3wg4MnvDmJY">How to Put Adsense on Your WordPress Blog</a></p>
<h3>WordPress Podcasts</h3>
<p>62. <a onclick="javascript:urchinTracker('/outbound/wp-community.org/?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://wp-community.org/">The WordPress Podcast</a></p>
<p>63. <a onclick="javascript:urchinTracker('/outbound/www.wptavern.com/wordpress-weekly?ref=http_//www.google.com/search?q=wordpress+help_ie=utf-8_oe=utf-8_aq=t_rls=org.mozilla_en-US_official_client=firefox-a');" href="http://www.wptavern.com/wordpress-weekly">The WordPress Weekly</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share This!</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="javascript:AddToFavorites();" title="Add to favorites"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/addtofavorites.png" title="Add to favorites" alt="Add to favorites" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.printfriendly.com/print?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;partner=sociable" title="Print"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Wordpress%20tips%20%26%20tutorials%20-%20http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F" title="Twitter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;t=Wordpress%20tips%20%26%20tutorials" title="Facebook"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials&amp;source=John+Nasta+any+major+dude+with+half+a+heart+surely+will+tell+you+my+friend&amp;summary=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So" title="LinkedIn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;t=Wordpress%20tips%20%26%20tutorials" title="MySpace"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials&amp;annotation=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So" title="Google Bookmarks"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials&amp;bodytext=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So" title="Digg"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;submitHeadline=Wordpress%20tips%20%26%20tutorials&amp;submitSummary=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F" title="Technorati"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Wordpress%20tips%20%26%20tutorials&amp;URL=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So" title="MSN Reporter"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="Live"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials&amp;notes=Wordpress%20Tutorials%2FHacks%0D%0A1.%20WordPress%20Theme%20Hacks%20%28Source%3A%20Web%20Designer%20Wall%29%0D%0A%0D%0A2.%20Removed%20by%20author.%0D%0A%0D%0A3.%20Create%20a%20Dynamic%20Sticky%20%28Source%3A%20Maxpower%29%0D%0A%0D%0A4.%20Styling%20Individual%20Posts%20Using%20the_ID%20%28Source%3A%20WP%20Designer%29%0D%0A%0D%0A5.%20Show%20Category%20Images%20%28So" title="del.icio.us"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="StumbleUpon"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="DZone"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="LinkArena"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/linkarena.png" title="LinkArena" alt="LinkArena" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Wordpress%20tips%20%26%20tutorials&amp;u=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F" title="Fark"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="Blogosphere News"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F" title="Propeller"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="Mixx"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F" title="Sphinn"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fjohnnasta.com%2Fblog%2F2009%2Fwordpress%2Fwordpress-tips-tutorials%2F&amp;title=Wordpress%20tips%20%26%20tutorials" title="Reddit"><img src="http://johnnasta.com/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://johnnasta.com/blog/2010/wordpress/changing-the-url-of-your-wordpress-site/' rel='bookmark' title='Permanent Link: Changing The URL Of Your WordPress Site'>Changing The URL Of Your WordPress Site</a> <small>WordPress web site owners often come to realize that they want to change the URL...</small></li>
<li><a href='http://johnnasta.com/blog/2010/wordpress/a-quick-and-easy-way-to-make-photo-galleries-for-wordpress-using-photo-shop/' rel='bookmark' title='Permanent Link: A Quick And Easy Way To Make Photo Galleries For WordPress'>A Quick And Easy Way To Make Photo Galleries For WordPress</a> <small>Do you want to make photo galleries for WordPress at lightning speed? Do you have...</small></li>
<li><a href='http://johnnasta.com/blog/2009/wordpress/wordpress-themes-reviews-alternate0/' rel='bookmark' title='Permanent Link: WordPress Theme Review &#8211; Alternate0'>WordPress Theme Review &#8211; Alternate0</a> <small>Basically, unless you are a very good coder, you should forget that you ever heard...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://johnnasta.com/blog/2009/wordpress/wordpress-tips-tutorials/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
