<?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>Josh Stauffer<title>&#187; WordPress</title>
</title>
	<atom:link href="http://www.joshstauffer.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joshstauffer.com</link>
	<description>Tips and Tricks from an Internet Entrepreneur &#38; Enthusiast</description>
	<lastBuildDate>Tue, 31 Aug 2010 03:13:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress: Get Tags for a Specific Category</title>
		<link>http://www.joshstauffer.com/wordpress-get-tags-for-a-specific-category/</link>
		<comments>http://www.joshstauffer.com/wordpress-get-tags-for-a-specific-category/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 15:08:19 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/?p=266</guid>
		<description><![CDATA[WordPress is such a powerful tool out of the box that it is surprising to find something that it doesn&#8217;t have a function for. Here is a code snippet that will allow you to show tags that are related to a specific category. The nice thing about this snippet is that it does not require [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/see-websites-search-engine-result-for-a-specific-keyword/' rel='bookmark' title='Permanent Link: See Website&#8217;s Search Engine Result for a Specific Keyword'>See Website&#8217;s Search Engine Result for a Specific Keyword</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-get-tags-for-a-specific-category%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-get-tags-for-a-specific-category%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>WordPress is such a powerful tool out of the box that it is surprising to find something that it doesn&#8217;t have a function for. Here is a code snippet that will allow you to show tags that are related to a specific category. The nice thing about this snippet is that it does not require any complicated custom DB queries but uses WordPress&#8217; built in features.</p>
<p>It is as simple as pasting this code wherever you would like to display tags for a specific category. If you would like to change the appearance of the tags, take a look at the options available for <a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud" target="_blank" rel="nofollow">wp_tag_cloud()</a>. Don&#8217;t forget to change the category name on line 1.</p>
<pre><code>&lt;?php
$custom_query = new WP_Query(&#39;posts_per_page=-1&amp;category_name=blog&#39;);
if ($custom_query-&gt;have_posts()) :
	while ($custom_query-&gt;have_posts()) : $custom_query-&gt;the_post();
		$posttags = get_the_tags();
		if ($posttags) {
			foreach($posttags as $tag) {
				$all_tags[] = $tag-&gt;term_id;
			}
		}
	endwhile;
endif;

$tags_arr = array_unique($all_tags);
$tags_str = implode(&quot;,&quot;, $tags_arr);

$args = array(
&#39;smallest&#39;  =&gt; 12,
&#39;largest&#39;   =&gt; 12,
&#39;unit&#39;      =&gt; &#39;px&#39;,
&#39;number&#39;    =&gt; 0,
&#39;format&#39;    =&gt; &#39;list&#39;,
&#39;include&#39;   =&gt; $tags_str
);
wp_tag_cloud($args);
?&gt;</code></pre>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/see-websites-search-engine-result-for-a-specific-keyword/' rel='bookmark' title='Permanent Link: See Website&#8217;s Search Engine Result for a Specific Keyword'>See Website&#8217;s Search Engine Result for a Specific Keyword</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/wordpress-get-tags-for-a-specific-category/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get Post Slug in WordPress</title>
		<link>http://www.joshstauffer.com/get-post-slug-in-wordpress/</link>
		<comments>http://www.joshstauffer.com/get-post-slug-in-wordpress/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 21:49:54 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/?p=173</guid>
		<description><![CDATA[I needed to get just the post slug for a project I have been working on. I found several sites that had similar ways of getting the post slug but I came up with an approach that utilizes WordPress&#8217; get_permalink() and PHP&#8217;s basename(). The common approach: $post_obj = $wp_query-&#62;get_queried_object(); $post_ID = $post_obj-&#62;ID; $post_title = $post_obj-&#62;post_title; [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fget-post-slug-in-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fget-post-slug-in-wordpress%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I needed to get just the post slug for a project I have been working on. I found <a href="http://wordpress.nataliejost.com/dev/get-post-slug/" target="_blank">several</a> <a href="http://www.wenderhost.com/2007/08/wordpress-tip-find-the-current-page-slug/" target="_blank">sites</a> that had similar ways of getting the post slug but I came up with an approach that utilizes WordPress&#8217; <a href="http://codex.wordpress.org/Template_Tags/get_permalink" target="_blank">get_permalink()</a> and PHP&#8217;s <a href="http://us3.php.net/manual/en/function.basename.php" target="_blank">basename()</a>.</p>
<p><span id="more-173"></span></p>
<p><strong>The common approach:</strong></p>
<pre><code>
$post_obj = $wp_query-&gt;get_queried_object();
$post_ID = $post_obj-&gt;ID;
$post_title = $post_obj-&gt;post_title;
$post_slug = $post_obj-&gt;post_name;
</code>
</pre>
<p><strong>My approach:</strong></p>
<pre><code>
$slug = basename(get_permalink());
</code>
</pre>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/get-post-slug-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>My Favorite WordPress Plugins</title>
		<link>http://www.joshstauffer.com/my-favorite-wordpress-plugins/</link>
		<comments>http://www.joshstauffer.com/my-favorite-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 20:35:35 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/?p=175</guid>
		<description><![CDATA[Subscribe to Comments &#8211; http://wordpress.org/extend/plugins/subscribe-to-comments/ WP-PageNavi &#8211; http://wordpress.org/extend/plugins/wp-pagenavi/ WP-DB-Backup &#8211; http://wordpress.org/extend/plugins/wp-db-backup/ Google XML Sitemaps &#8211; http://wordpress.org/extend/plugins/google-sitemap-generator/ Related posts:Why You Should Show Your Most Popular Posts WordPress, GoDaddy, Permalinks, and 404&#8242;s


Related posts:<ol><li><a href='http://www.joshstauffer.com/why-you-should-show-your-most-popular-posts/' rel='bookmark' title='Permanent Link: Why You Should Show Your Most Popular Posts'>Why You Should Show Your Most Popular Posts</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fmy-favorite-wordpress-plugins%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fmy-favorite-wordpress-plugins%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<ul>
<li>Subscribe to Comments &#8211; http://wordpress.org/extend/plugins/subscribe-to-comments/</li>
<li>WP-PageNavi &#8211; http://wordpress.org/extend/plugins/wp-pagenavi/</li>
<li>WP-DB-Backup &#8211; http://wordpress.org/extend/plugins/wp-db-backup/</li>
<li>Google XML Sitemaps &#8211; http://wordpress.org/extend/plugins/google-sitemap-generator/</li>
</ul>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/why-you-should-show-your-most-popular-posts/' rel='bookmark' title='Permanent Link: Why You Should Show Your Most Popular Posts'>Why You Should Show Your Most Popular Posts</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/my-favorite-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Created a WordPress Theme</title>
		<link>http://www.joshstauffer.com/i-created-a-wordpress-theme/</link>
		<comments>http://www.joshstauffer.com/i-created-a-wordpress-theme/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 04:37:26 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/2008/01/i-created-a-wordpress-theme/</guid>
		<description><![CDATA[I know you are thinking&#8230; you did what? But it&#8217;s true. I have reached a milestone in my life. I just created my first ever WordPress theme. I am also very pleased with how it turned out. It took me about 8 hours to complete but most of that time was spent waiting on the [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/designing-a-wordpress-theme/' rel='bookmark' title='Permanent Link: Designing a WordPress Theme'>Designing a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fi-created-a-wordpress-theme%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fi-created-a-wordpress-theme%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.joshstauffer.com/wp-content/uploads/screenshot.png" alt="JOSH v1" class="alignleft" />I know you are thinking&#8230; you did what? But it&#8217;s true. I have reached a milestone in my life.  I just created my first ever WordPress theme.  I am also very pleased with how it turned out.  It took me about 8 hours to complete but most of that time was spent waiting on the trial version of <a href="http://www.adobe.com/products/photoshop/photoshop/" title="Adobe Photoshop CS3" target="_blank">Photoshop CS3</a> to download and fixing an annoying CSS issue.  I am sure there will be some bugs that I need to fix but so far, so good.</p>
<p>I would like to thank Small Potato for his very basic tutorial titled &#8220;<a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/" title="So you want to create WordPress themes huh?" target="_blank">So you want to create WordPress themes huh?</a>&#8221;  If you are new to WordPress or just want a fresh, clear view of stepping through a theme then I suggest you start with his tutorial.</p>
<p>I would also like to thank Photoshop CS3 for making my first theme beautiful.  I couldn’t have done it without you.  Wink.</p>
<p>Next on the agenda:</p>
<ol>
<li>Validatation of XHTML &amp; CSS</li>
<li>Checking design in different browsers with help from <a href="http://www.joshstauffer.com/tech/browser-renderings/" title="Browser Renderings">IE NetRenderer</a></li>
<li>Finding and fixing any bugs</li>
</ol>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/designing-a-wordpress-theme/' rel='bookmark' title='Permanent Link: Designing a WordPress Theme'>Designing a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/i-created-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Display the Latest Posts with WordPress</title>
		<link>http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/</link>
		<comments>http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 00:54:32 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/2007/06/display-the-latest-posts-with-wordpress/</guid>
		<description><![CDATA[If you set a static page as your front page, it can be a little tricky figuring out how to link to a page that shows your latest posts. So far I have come across two solutions you can use with your WordPress blog when linking to such a page. Solution One Create a link [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/why-you-should-show-your-most-popular-posts/' rel='bookmark' title='Permanent Link: Why You Should Show Your Most Popular Posts'>Why You Should Show Your Most Popular Posts</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-get-tags-for-a-specific-category/' rel='bookmark' title='Permanent Link: WordPress: Get Tags for a Specific Category'>WordPress: Get Tags for a Specific Category</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fdisplay-the-latest-posts-with-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fdisplay-the-latest-posts-with-wordpress%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you set a static page as your front page, it can be a little tricky figuring out how to link to a page that shows your latest posts. So far I have come across two solutions you can use with your WordPress blog when linking to such a page.</p>
<h4>Solution One</h4>
<p>Create a link in your sidebar or somewhere on your site that looks like this: http://www.yourdomain.com/?p=all  You should replace the http://www.yourdomain.com/ with the location of your blog.</p>
<h4>Solution Two</h4>
<p>You need to <a href="http://codex.wordpress.org/Pages#Creating_your_own_Page_Templates" title="Creating Your Own Page Templates" target="_blank">create a new page template</a> by copying an existing one. In your new page template, find this line:</p>
<pre>
&lt;?php while (have_posts()) : the_post(); ?&gt;
</pre>
<p>Then replace that line with this code:</p>
<pre>
&lt;?php $my_query = new WP_Query('showposts=10');

while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();

$do_not_duplicate = $post-&gt;ID; ?&gt;
</pre>
<p>The code you just added creates a loop and retrieves the latest 10 posts and will display them on a page you create with your new template.</p>
<p>If you know of another solution to accomplish this task, please share it with my readers and me by commenting below.</p>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/why-you-should-show-your-most-popular-posts/' rel='bookmark' title='Permanent Link: Why You Should Show Your Most Popular Posts'>Why You Should Show Your Most Popular Posts</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/' rel='bookmark' title='Permanent Link: WordPress, stop changing my HTML code!'>WordPress, stop changing my HTML code!</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-get-tags-for-a-specific-category/' rel='bookmark' title='Permanent Link: WordPress: Get Tags for a Specific Category'>WordPress: Get Tags for a Specific Category</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>WordPress, stop changing my HTML code!</title>
		<link>http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/</link>
		<comments>http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 02:52:15 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/2007/05/31/wordpress-stop-changing-my-html-code/</guid>
		<description><![CDATA[Problem The visual editor packed with WordPress is beautiful and very user friendly. But if you are like me, sometimes a visual editor is not going to cut it. When writing a post or a page, you have two options: Visual or Code. Selecting the Code tab can be somewhat sneaky. For example, you create [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
<li><a href='http://www.joshstauffer.com/get-post-slug-in-wordpress/' rel='bookmark' title='Permanent Link: Get Post Slug in WordPress'>Get Post Slug in WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-stop-changing-my-html-code%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-stop-changing-my-html-code%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<h4>Problem</h4>
<p>The visual editor packed with WordPress is beautiful and very user friendly. But if you are like me, sometimes a visual editor is not going to cut it. When writing a post or a page, you have two options: Visual or Code. Selecting the Code tab can be somewhat sneaky. For example, you create your post in Dreamweaver then copy and paste it into the code view. Once you have published that post and go back to edit it you will find that WordPress has completely changed and rearranged your HTML and CSS.  This can be very aggravating but there is a solution.</p>
<h4>Solution</h4>
<p>From the WordPress admin section click on Users. Edit your user profile by checking the &#8216;Disable the visual editor when writing&#8217; and then click Update Profile. Now you can write your posts and pages with HTML and CSS and not worry about WordPress changing your code. Hooray for code preservation!</p>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/' rel='bookmark' title='Permanent Link: WordPress, GoDaddy, Permalinks, and 404&#8242;s'>WordPress, GoDaddy, Permalinks, and 404&#8242;s</a></li>
<li><a href='http://www.joshstauffer.com/get-post-slug-in-wordpress/' rel='bookmark' title='Permanent Link: Get Post Slug in WordPress'>Get Post Slug in WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/wordpress-stop-changing-my-html-code/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Designing a WordPress Theme</title>
		<link>http://www.joshstauffer.com/designing-a-wordpress-theme/</link>
		<comments>http://www.joshstauffer.com/designing-a-wordpress-theme/#comments</comments>
		<pubDate>Tue, 01 May 2007 02:10:46 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.joshstauffer.com/2007/04/30/designing-a-wordpress-theme/</guid>
		<description><![CDATA[WordPress is very fascinating. I am new to blogging but have a moderate understanding of HTML &#38; CSS. If you are interested in designing a WordPress theme that you can call your own, you first have to read the tutorial titled &#8220;Dissection of a WordPress theme.&#8221; In a matter of a couple hours I was [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/i-created-a-wordpress-theme/' rel='bookmark' title='Permanent Link: I Created a WordPress Theme'>I Created a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fdesigning-a-wordpress-theme%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fdesigning-a-wordpress-theme%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.wordpress.org/" title="WordPress is a state-of-the-art semantic personal publishing platform with a focus on aesthetics, web standards, and usability." target="_blank">WordPress</a> is very fascinating. I am new to blogging but have a moderate understanding of <a href="http://www.w3schools.com/html/default.asp" title="Learn HTML" target="_blank">HTML</a> &amp; <a href="http://www.w3schools.com/css/default.asp" title="Learn CSS" target="_blank">CSS</a>. If you are interested in designing a WordPress theme that you can call your own, you first have to read the tutorial titled &#8220;<a href="http://urbangiraffe.com/themes/guides/" title="WordPress Theme Guide" target="_blank">Dissection of a WordPress theme</a>.&#8221; In a matter of a couple hours I was able to follow this tutorial and after doing so I feel like I have a foundational understanding of the different parts that make up a theme.</p>
<p>The tutorial takes the default theme &#8216;Kubrick&#8217; which is packaged with WordPress and dissects it piece by piece. It summarizes different parts in the code but does not bog down the reader with a large amount of overwhelming detail.  There are four parts to the tutorial which are as follows:</p>
<ol>
<li><a href="http://urbangiraffe.com/2005/04/12/themeguide1/" title="Part One - Pulling it apart" target="_blank">Part one</a> &#8211; Pulling it apart</li>
<li><a href="http://urbangiraffe.com/2005/04/22/themeguide2/" title="Part two - Complete design, header, and footer" target="_blank">Part two</a> &#8211; Complete design, header, and footer</li>
<li><a href="http://urbangiraffe.com/2005/04/30/themeguide3/" title="Part three - The sidebar" target="_blank">Part three</a> &#8211; The sidebar</li>
<li><a href="http://urbangiraffe.com/2005/05/20/themeguide4/" title="Part four - The content" target="_blank">Part four</a> &#8211; The content</li>
</ol>
<p>Now I must put what I have learned to the test and attempt to create my own theme. Thank you John Godley for your excellent work!</p>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/i-created-a-wordpress-theme/' rel='bookmark' title='Permanent Link: I Created a WordPress Theme'>I Created a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/designing-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress, GoDaddy, Permalinks, and 404&#8242;s</title>
		<link>http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/</link>
		<comments>http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 23:36:06 +0000</pubDate>
		<dc:creator>Josh Stauffer</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bransonhillstribute.com/wordpress27/?p=1</guid>
		<description><![CDATA[I assumed turning on permalinks in WordPress would be as easy as selecting the radio button and clicking update. Little did I know I would be looking at 404 pages for 2 hours. After extensive research I came to the conclusion that there isn&#8217;t any known solution to this problem. I have read many posts [...]


Related posts:<ol><li><a href='http://www.joshstauffer.com/i-created-a-wordpress-theme/' rel='bookmark' title='Permanent Link: I Created a WordPress Theme'>I Created a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/open-links-in-new-windows/' rel='bookmark' title='Permanent Link: Open Links in New Windows'>Open Links in New Windows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-godaddy-permalinks-and-404s%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.joshstauffer.com%2Fwordpress-godaddy-permalinks-and-404s%2F&amp;source=joshstauffer&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>I assumed turning on <a href="http://codex.wordpress.org/Using_Permalinks" title="Permalinks" target="_blank">permalinks</a> in WordPress would be as easy as selecting the radio button and clicking update. Little did I know I would be looking at <a href="http://en.wikipedia.org/wiki/404_error" title="404 Error" target="_blank">404</a> pages for 2 hours. After <a href="http://www.google.com" title="GOOGLE IT" target="_blank">extensive research</a> I came to the conclusion that there isn&#8217;t any known solution to this problem. I have read many posts that say different things. Having lost all hope of fixing this error I decided to close my browser window and start all over. I opened my browser again, went to <a href="http://www.joshstauffer.com" title="JoshStauffer.com">www.joshstauffer.com</a>, clicked on &#8216;<a href="http://www.joshstauffer.com/about/">About</a>&#8216;, and viola!&#8230; Permalinks now work! Why? I don&#8217;t know.</p>
<p><strong>Solution:</strong> If you would like to use permalinks and you are using <a href="http://www.godaddy.com" title="GoDaddy.com" target="_blank">GoDaddy</a> for hosting, all you must do is turn permalinks on and wait.  I am not sure how long to wait but rest assured the permalinks will begin to work after a short period of time.</p>


<p>Related posts:<ol><li><a href='http://www.joshstauffer.com/i-created-a-wordpress-theme/' rel='bookmark' title='Permanent Link: I Created a WordPress Theme'>I Created a WordPress Theme</a></li>
<li><a href='http://www.joshstauffer.com/display-the-latest-posts-with-wordpress/' rel='bookmark' title='Permanent Link: Display the Latest Posts with WordPress'>Display the Latest Posts with WordPress</a></li>
<li><a href='http://www.joshstauffer.com/open-links-in-new-windows/' rel='bookmark' title='Permanent Link: Open Links in New Windows'>Open Links in New Windows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.joshstauffer.com/wordpress-godaddy-permalinks-and-404s/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
	</channel>
</rss>
