<?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>Vandelay Design Blog &#187; WordPress</title>
	<atom:link href="http://vandelaydesign.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://vandelaydesign.com/blog</link>
	<description>Web Design and Development Blog</description>
	<lastBuildDate>Thu, 19 Nov 2009 02:56:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>9 WordPress Hacks to Encourage User Interactivity</title>
		<link>http://vandelaydesign.com/blog/wordpress/hacks-user-interactivity/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/hacks-user-interactivity/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 21:17:21 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog design. blog themes]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=1296</guid>
		<description><![CDATA[All bloggers would like to get more interaction and participation from their readers and visitors. In this post we'll look at nine different things you can do to your WordPress theme to add the possibility of some type of interaction. Some involves comments, social media, and other ways of getting readers involved.
<h3>1. Show Most Recent Comments</h3>
One of the most important ways that blogs can encourage readers to get involved is through the comments. There are a number of different strategies for increasing comments and participation from readers, and many of them involve placing extra emphasis on the comments. By displaying the most recent comments (in the sidebar for example) you may be able to encourage more comments because visitors will see that you value their participation.]]></description>
			<content:encoded><![CDATA[<p>All bloggers would like to get more interaction and participation from their readers and visitors. In this post we&#8217;ll look at nine different things you can do to your WordPress theme to add the possibility of some type of interaction. Some involves comments, social media, and other ways of getting readers involved.</p>
<h3>1. Show Most Recent Comments</h3>
<p>One of the most important ways that blogs can encourage readers to get involved is through the comments. There are a number of different strategies for increasing comments and participation from readers, and many of them involve placing extra emphasis on the comments. By displaying the most recent comments (in the sidebar for example) you may be able to encourage more comments because visitors will see that you value their participation.</p>
<p>To display a list of the most recent comments, use the following code in your theme:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;height:300px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">comments<br />
LEFT OUTER <a href="http://www.php.net/join"><span style="color: #990000;">JOIN</span></a> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>posts ON <span style="color: #009900;">&#40;</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>comments<span style="color: #339933;">.</span>comment_post_ID <span style="color: #339933;">=</span><br />
<span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>posts<span style="color: #339933;">.</span>ID<span style="color: #009900;">&#41;</span><br />
WHERE comment_approved <span style="color: #339933;">=</span> <span style="color: #0000ff;">'1'</span> AND comment_type <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span> AND<br />
post_password <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><br />
ORDER BY comment_date_gmt DESC<br />
LIMIT <span style="color: #cc66cc;">10</span><span style="color: #0000ff;">&quot;;<br />
<span style="color: #006699; font-weight: bold;">$comments</span> = <span style="color: #006699; font-weight: bold;">$wpdb</span>-&amp;gt;get_results(<span style="color: #006699; font-weight: bold;">$sql</span>);<br />
<span style="color: #006699; font-weight: bold;">$output</span> = <span style="color: #006699; font-weight: bold;">$pre_HTML</span>;<br />
<span style="color: #006699; font-weight: bold;">$output</span> .= &quot;</span>\n<br />
<span style="color: #339933;">&lt;</span>ul<span style="color: #339933;">&gt;</span><span style="color: #0000ff;">&quot;;<br />
foreach (<span style="color: #006699; font-weight: bold;">$comments</span> as <span style="color: #006699; font-weight: bold;">$comment</span>) {<br />
<span style="color: #006699; font-weight: bold;">$output</span> .= &quot;</span>\n<br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;</span><span style="color: #0000ff;">&quot;.strip_tags(<span style="color: #006699; font-weight: bold;">$comment</span>-&amp;gt;comment_author)<br />
.&quot;</span><span style="color: #339933;">:</span><span style="color: #0000ff;">&quot; . &quot;</span><span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;ID) .<br />
&quot;</span><span style="color: #666666; font-style: italic;">#comment-&quot; . $comment-&amp;gt;comment_ID . &quot;\&quot; title=\&quot;on &quot; .<br />
</span><span style="color: #000088;">$comment</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>post_title <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&amp;gt;&quot;</span> <span style="color: #339933;">.</span> <a href="http://www.php.net/strip_tags"><span style="color: #990000;">strip_tags</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comment</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>com_excerpt<span style="color: #009900;">&#41;</span><br />
<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&lt;/a&gt;&lt;/li&gt;<br />
&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&lt;/ul&gt;<br />
&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$post_HTML</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$output</span><span style="color: #339933;">;</span>?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></div></div>
<p><em><strong>Source: <a href="http://wphacks.com/huge-compilation-of-wordpress-code/">WP Hacks</a></strong></em></p>
<h3>2. Allow Visitors to Email Posts to Their Friends</h3>
<p>If your readers enjoy and appreciate the posts on your blog they may be interested in emailing them to their friends. On most news websites you&#8217;ll see a link that says &#8220;email to a friend,&#8221; but it&#8217;s not as common on blogs. Adding this functionality into your theme is not as difficult as you might think.</p>
<p>To add an &#8220;email this&#8221; link, use the following code in your single.php file:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;a href=&quot;mailto:?subject=<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span>&amp;amp;body=<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;Send this<br />
article to a friend!&quot;&gt;Email this&lt;/a&gt;</div></div>
<p><em><strong>Source: <a href="http://www.wprecipes.com/how-to-allow-your-visitors-to-send-your-articles-by-email-to-their-friends">WP Recipes</a></strong></em></p>
<h3>3. Add a &#8220;Share on Facebook&#8221; Link</h3>
<p>While social media and social networking are commonly integrated with blogging, it&#8217;s more common to see a Digg or Tweetmeme button than one that will allow readers to share the link via Facebook. Since Facebook is such an incredibly popular site, it may provide additional exposure for your blog and provide more opportunities for your readers to interact with your content.</p>
<p>To add a &#8220;share on Facebook&#8221; link, use the following code:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.facebook.com/sharer.php?u=&amp;lt;?php the_permalink();?&amp;gt;&amp;amp;t=&amp;lt;?php the_title(); ?&amp;gt;&quot;</span> target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;blank&quot;</span><span style="color: #339933;">&gt;</span>Share on Facebook<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span></div></div>
<p><em><strong>Source: <a href="http://www.wprecipes.com/how-to-add-a-share-on-facebook-link-to-your-wordpress-blog">WP Recipes</a></strong></em></p>
<h3>4. Add Custom Bookmark Links</h3>
<p>Many blogs receive tremendous exposure from social media sites, and encouraging your readers to interact by voting or bookmarking can make a big difference in terms of traffic levels. There are plugins and widgets available for this purpose, as well as buttons and badges from the social media sites, but if you&#8217;d like more control over the look or if you would just like to do it yourself it is possible.</p>
<p><strong>Bookmark with Delicious:</strong></p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Bookmark this post at Delicious&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://delicious.com/post?url=&amp;lt;?php the_permalink(); ?&amp;gt;&amp;amp;title=&amp;lt;?php echo urlencode(get_the_title(<span style="color: #006699; font-weight: bold;">$id</span>)); ?&amp;gt;&quot;</span><span style="color: #339933;">&gt;</span>Bookmark at Delicious<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span></div></div>
<p><strong>Digg:</strong></p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Submit this post to Digg&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://digg.com/submit?phase=2&amp;amp;url=&amp;lt;?php the_permalink(); ?&amp;gt;&quot;</span><span style="color: #339933;">&gt;</span>Digg this<span style="color: #339933;">!&lt;/</span>a<span style="color: #339933;">&gt;</span></div></div>
<p><strong>Twitter:</strong></p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;a rel=&quot;nofollow&quot; href=&quot;http://twitter.com/home?status=<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <a href="http://www.php.net/urlencode"><span style="color: #990000;">urlencode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Currently reading: &quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; title=&quot;Share this article with your Twitter followers&quot;&gt;Tweet this!&lt;/a&gt;</div></div>
<p><strong>StumbleUpon:</strong></p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Share this post at StumbleUpon&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.stumbleupon.com/submit?url=&amp;lt;?php the_permalink(); ?&amp;gt;&amp;amp;title=&amp;lt;?php echo urlencode(get_the_title(<span style="color: #006699; font-weight: bold;">$id</span>)); ?&amp;gt;&quot;</span><span style="color: #339933;">&gt;</span>Stumble this<span style="color: #339933;">!&lt;/</span>a<span style="color: #339933;">&gt;</span></div></div>
<p><em><strong>Source: <a href="http://perishablepress.com/press/2008/11/23/fully-valid-seo-friendly-social-media-links-for-wordpress/">Perishable Press</a></strong></em></p>
<h3>5. Rearrange the Comments to Show Most Recent Comments First</h3>
<p>Having a blog that receives a lot of comments from readers can in some ways discourage others from participating. Some readers will not take the time to leave a comment if they feel like theirs will be buried below 100 other comments. One trick to reward those who are going to take the time to comment is to list the comments with the most recent on top, rather than the oldest one being on top.</p>
<p>Find the following code in your comments.php file (please note that not all themes use the same coding for the comments.php file):</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$comment</span><span style="color: #009900;">&#41;</span></div></div>
<p>and before it add:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$comments</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array_reverse"><span style="color: #990000;">array_reverse</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$comments</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p><strong><em>Source: <a href="http://wordpress.org/support/topic/208286">WordPress Forums</a></em></strong></p>
<h3>6. Add a User-Submitted News Section</h3>
<p>User-submitted news or community news sections can be a great way for visitors to get involved at your site. With a news section you will be able to display links to relevant posts at other blogs, and your readers will be able to submit posts that they have found to be helpful, or get some extra promotion by submitting links to their own posts.</p>
<p>I included a news section when I launched <a href="http://designm.ag/">DesignM.ag</a> last year and since day one it has drawn significant interest from readers.</p>
<p>The process of adding a news section is more involved than just copying and pasting some code, so I will not be providing code for this one, but Tripwire Magazine published a post a few months ago that will lead you through the process. See <a href="http://www.tripwiremagazine.com/tutorials/wordpress/howto-wordpress-27-user-link-feed-submit-form-and-widget.html">How to: WordPress 2.7+ User Link Feed Submit Form and Widget</a>.</p>
<h3>7. Add Translation Links</h3>
<p>As a blogger, you may be surprised to see how many of your visitors and subscribers come from various countries. While these people may be able to read and understand your posts, there may be some times when they have difficulty or where they would like to share the post with someone who may not be able to read it. In these case, translation can come in handy.</p>
<p>Inserting the code shown below will allow your visitors to easily use Google&#8217;s translation services:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #339933;">&lt;</span>ul id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;translations&quot;</span><span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cde&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Deutsch<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Ces&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Espanol<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cfr&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Francais<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cit&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Italiano<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cpt&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Portugues<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Car&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Arabic<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cja&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Japanese<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
&nbsp; &nbsp; <span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nofollow&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://translate.google.com/translate?u=&amp;lt;?php echo urlencode('http://'.<span style="color: #006699; font-weight: bold;">$_SERVER</span>['HTTP_HOST'].<span style="color: #006699; font-weight: bold;">$_SERVER</span>['REQUEST_URI']); ?&amp;gt;&amp;amp;langpair=en%7Cko&quot;</span><span style="color: #339933;">&gt;</span>Translate this page to Korean<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span><br />
<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span></div></div>
<p><em><strong>Source: <a href="http://perishablepress.com/press/2008/12/09/valid-seo-friendly-post-translation-links/">Perishable Press</a></strong></em></p>
<h3>8. Google Custom Search</h3>
<p>One of the best ways for visitors to find what they are looking for is to use a site-wide search. Unfortunately, the default WordPress search isn&#8217;t much help in most cases. However, you can easily add custom search powered by Google to your blog (plus you can monetize the search through AdSense).</p>
<p>In order to get your own custom search from Google, you will need to sign up with them and they will provide the code. Pro Blog Design has a tutorial that takes you through all of the steps that are involved. See <a href="http://www.problogdesign.com/how-to/make-a-google-custom-search-for-your-blog-and-make-money/">Make a Google Custom Search for Your Blog, and Make Money</a>.</p>
<h3>9. Display Facebook Status on Your Blog</h3>
<p>Many blogs display most recent tweets, but it&#8217;s also possible to share your Facebook status on your blog. There are a few steps involved in doing this with WordPress, and Hongkiat has a tutorial that will lead you through the process. See <a href="http://www.hongkiat.com/blog/how-to-display-facebook-statuses-on-wordpress-blog/">How to Display Facebook Statuses on WordPress Blog</a>.</p>
<p>For more WordPress-related posts please see:</p>
<ul>
<li><a href="http://vandelaydesign.com/blog/wordpress/resources-for-theme-designers/">15 Exceptionally Useful Resources for WordPress Theme Designers</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/custom-fields/">20+ Tutorials and Resources for Working with Custom Fields in WordPress</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/">Top 10 Tutorials for Developing WordPress Themes</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/design-inspiration/">10 Excellent Sources for WordPress Design Inspiration</a></li>
</ul>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fhacks-user-interactivity%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fhacks-user-interactivity%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/hacks-user-interactivity/feed/</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
		<item>
		<title>15 Exceptionally Useful Resources for WordPress Theme Designers</title>
		<link>http://vandelaydesign.com/blog/wordpress/resources-for-theme-designers/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/resources-for-theme-designers/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 01:22:13 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=1223</guid>
		<description><![CDATA[One of the great benefits of designing and developing for WordPress is the amount of quality resources that are available from others in the WordPress community. Many times these resources can wind up saving you time in your own development. The only problem is that there are so many resources available that it is difficult to know about them all and sometimes to find what you are looking for.

In this post we'll feature 15 resources that may be of help to you while you are designing and developing WordPress themes. If you have suggestions for other resources, please leave a comment.
<h3>Frameworks:</h3>
<a href="http://themeshaper.com/thematic/"><strong>Thematic</strong></a>

Thematic is a very popular WordPress theme framework created by Ian Stewart. This framework can be used as-is, or is excellent for using with child themes. In fact, a number of child themes for Thematic are available for free or as premium themes, including the <a href="http://www.smashingmagazine.com/2009/05/04/download-gallery-a-free-wordpress-theme/">free gallery theme</a> distributed by Smashing Magazine.

<a href="http://themeshaper.com/thematic/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/1.jpg" alt="Thematic" width="500" height="279" /></a>]]></description>
			<content:encoded><![CDATA[<p>One of the great benefits of designing and developing for WordPress is the amount of quality resources that are available from others in the WordPress community. Many times these resources can wind up saving you time in your own development. The only problem is that there are so many resources available that it is difficult to know about them all and sometimes to find what you are looking for.</p>
<p>In this post we&#8217;ll feature 15 resources that may be of help to you while you are designing and developing WordPress themes. If you have suggestions for other resources, please leave a comment.</p>
<h3>Frameworks:</h3>
<p><a href="http://themeshaper.com/thematic/"><strong>Thematic</strong></a></p>
<p>Thematic is a very popular WordPress theme framework created by Ian Stewart. This framework can be used as-is, or is excellent for using with child themes. In fact, a number of child themes for Thematic are available for free or as premium themes, including the <a href="http://www.smashingmagazine.com/2009/05/04/download-gallery-a-free-wordpress-theme/">free gallery theme</a> distributed by Smashing Magazine.</p>
<p><a href="http://themeshaper.com/thematic/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/1.jpg" alt="Thematic" width="500" height="279" /></a></p>
<p><a href="http://themehybrid.com/archives/2008/11/hybrid-wordpress-theme-framework"><strong>Hybrid Theme Framework</strong></a></p>
<p>The Hybrid theme framework, by Justin Tadlock, has also been created with child themes in mind. It includes 13 page templates for various purposes, 15+ plugins supported within the theme, breadcrumbs, and tutorials to help you get started.</p>
<p><a href="http://themehybrid.com/archives/2008/11/hybrid-wordpress-theme-framework"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/2.jpg" alt="Hybrid Theme Framework" width="500" height="293" /></a></p>
<p><a href="http://elliotjaystocks.com/blog/archive/2008/starkers-for-wordpress-262/"><strong>Starkers</strong></a></p>
<p>Starkers is a &#8220;bare-bones, blank-canvas, starting-point WordPress theme&#8221; from Elliot Jay Stocks.  Starkers has no formatting whatsoever, which will provide you will a starting point that can save time in development of your own themes.</p>
<p><a href="http://carringtontheme.com/"><strong>Carrington Theme Framework</strong></a></p>
<p>Carrington is a theme framework that better enables WordPress to be used as a CMS. Carrington makes it easier to create unique looks for different categories and posts with custom templates.</p>
<h3>Testing WordPress Themes:</h3>
<p><a href="http://sixrevisions.com/tutorials/web-development-tutorials/using-xampp-for-local-wordpress-theme-development/"><strong>Using XAMPP for Local WordPress Theme Development</strong></a></p>
<p>Jacob Gube of Six Revisions shows how to set up a local environment for theme development. This is a detailed tutorial that may be able to save you a lot of time and make your theme development much quicker and easier.</p>
<p><a href="http://sixrevisions.com/tutorials/web-development-tutorials/using-xampp-for-local-wordpress-theme-development/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/6.jpg" alt="Using XAMPP for Local WordPress Theme Development" width="500" height="227" /></a></p>
<p><a href="http://net.tutsplus.com/tutorials/wordpress/how-to-set-up-a-killer-wordpress-testing-environment-locally/"><strong>How to Set Up a Killer WordPress Testing Environment Locally</strong></a></p>
<p>NETTUTS also has a tutorial for setting up a local testing environment. If you are designing and developing many WordPress themes you will want to check out one of these two tutorials.</p>
<p><a href="http://net.tutsplus.com/tutorials/wordpress/how-to-set-up-a-killer-wordpress-testing-environment-locally/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/7.jpg" alt="How to Set Up a Killer WordPress Testing Environment Locally" width="500" height="288" /></a></p>
<p><a href="http://www.nkuttler.de/nkthemeswitch/"><strong>nkthemeswitch</strong></a></p>
<p>The theme switch plugin will allow you to show a different theme to anyone who is logged in to your site. This makes it easy to test a theme in development without your visitors seeing it.</p>
<h3>Dummy Content:</h3>
<p><a href="http://selfconclusion.co.uk/2008/09/wordpress-xml-import-download/"><strong>WP XML Test Data Import</strong></a></p>
<p>When developing themes one of the biggest frustrations can be the lack on content on a new installation of WordPress. Self Conclusion has put together an XML file with several posts and pages of dummy content with tags, categories, comments, links, lists, and everything you will need to test a theme. You can easily download this file and import it into WordPress to save the time of adding your own dummy content.</p>
<p><a href="http://selfconclusion.co.uk/2008/09/wordpress-xml-import-download/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/8.jpg" alt="WP XML Test Data Import" width="500" height="283" /></a></p>
<p><a href="http://sndbx.org/judging/"><strong>Sandbox Dummy Content</strong></a></p>
<p>For Sandbox design competitions, a set of dummy content was released. It achieves the same purpose as the content from Self Conclusion that was just mentioned.</p>
<p><a href="http://thinkdesignblog.com/wordpress-lorem-ipsum-test-post-pack.htm"><strong>WordPress Test Post Pack</strong></a></p>
<p>Think Design Blog also has a pack of dummy content that can be downloaded and imported into WordPress.</p>
<h3>Cheat Sheets and Reference Guides:</h3>
<p><a href="http://www.webdesignerwall.com/tutorials/complete-wordpress-theme-guide/"><strong>Complete WordPress Theme Guide</strong></a></p>
<p>Nick La of Web Designer Wall put together a three-part series to help those who want to learn more about WordPress theme development. The three parts are: installing WordPress locally, building a custom WordPress theme, and moving and exporting WordPress.</p>
<p><a href="http://www.webdesignerwall.com/tutorials/complete-wordpress-theme-guide/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/3.jpg" alt="Complete WordPress Theme Guide" width="500" height="304" /></a></p>
<p><a href="http://www.dbswebsite.com/design/wordpress-reference/"><strong>WordPress Template Tag Reference Guide</strong></a></p>
<p>The template tag reference guide is a great resource to have close by when you are coding a WordPress theme. It lists all of the template tags, which can save a good bit of time during development.</p>
<p><a href="http://www.dbswebsite.com/design/wordpress-reference/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/4.jpg" alt="WordPress Template Tag Reference Guide" width="500" height="305" /></a></p>
<p><a href="http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/"><strong>WordPress Theme Development Checklist</strong></a></p>
<p>This PDF checklist is helpful to make sure that you are not forgetting any steps during theme development. The checklist will help you to know what you have done and what still needs to be completed.</p>
<p><a href="http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/5.jpg" alt="WordPress Theme Development Checklist" width="500" height="300" /></a></p>
<p><a href="http://anton.shevchuk.name/wp-content/uploads/2008/09/wordpress_-_template_designer_cheatsheet_en.pdf"><strong>WordPress Template Design Cheat Sheet</strong></a></p>
<p>The template design cheat sheet is another resource that is good to have handy during development.  It lists the various template files, template hierarchy, sample template coding, template functions, and more.</p>
<p><a href="http://anton.shevchuk.name/wp-content/uploads/2008/09/wordpress_-_template_designer_cheatsheet_en.pdf"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/16.jpg" alt="WordPress Template Design Cheat Sheet" width="500" height="300" /></a></p>
<h3>Coding Services:</h3>
<p><a href="http://wpcoder.com/"><strong>WPCoder</strong></a></p>
<p>If you are a WordPress designer and you would like to save some time in development of the theme, WPCoder is a group of developers that specialize in taking your designs in PSD format and coding them into WordPress themes.</p>
<p><a href="http://wpcoder.com/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/14.jpg" alt="WPCoder" width="500" height="290" /></a></p>
<p><a href="http://www.psdtowp.com/"><strong>PSD to WP</strong></a></p>
<p>PSD to WP is another coding service similar to WPCoder.</p>
<p><a href="http://www.psdtowp.com/"><img class="alignnone" src="http://vandelaydesign.com/images/0809/wp/15.jpg" alt="PSD to WP" width="500" height="274" /></a></p>
<h3>From the WordPress Codex:</h3>
<ul>
<li><a href="http://codex.wordpress.org/Theme_Development">Theme Development</a></li>
<li><a href="http://codex.wordpress.org/The_Loop">The Loop</a></li>
<li><a href="http://codex.wordpress.org/Template_Tags">Template Tags</a></li>
<li><a href="http://codex.wordpress.org/Conditional_Tags">Conditional Tags</a></li>
<li><a href="http://codex.wordpress.org/Stepping_Into_Templates">Stepping into Templates</a></li>
<li><a href="http://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a></li>
<li><a href="http://codex.wordpress.org/Using_Custom_Fields">Custom Fields</a></li>
</ul>
<p><strong>For more WordPress-related content, please see:</strong></p>
<ul>
<li><a href="http://vandelaydesign.com/blog/wordpress/custom-fields/">20+ Tutorials and Resources for Working with Custom Fields in WordPress</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/">Top 10 Tutorials for Developing WordPress Themes</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/category-hacks/">Category Hacks for WordPress Theme Designers</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/design-inspiration/">10 Excellent Sources for WordPress Design Inspiration</a></li>
</ul>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fresources-for-theme-designers%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fresources-for-theme-designers%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/resources-for-theme-designers/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>20+ Tutorials and Resources for Working with Custom Fields in WordPress</title>
		<link>http://vandelaydesign.com/blog/wordpress/custom-fields/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/custom-fields/#comments</comments>
		<pubDate>Wed, 13 May 2009 11:40:51 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=812</guid>
		<description><![CDATA[One of the keys to WordPress's flexibility and endless possibilities is the use of custom fields. With custom fields you can do all kinds of things, but most designers and developers who are new to WordPress are not familiar with how to put custom fields into practice. In this post we'll look at a number of tutorials that will show you some potential uses of custom fields, as well as a handful of plugins that make it easier or more productive to use custom fields.

<a href="http://justintadlock.com/archives/2007/10/24/using-wordpress-custom-fields-introduction"><strong>Using WordPress Custom Fields: Introduction</strong></a>

This article from Justin Tadlock gives an overview of custom fields, and it's actually the introductory post to a series on the subject of custom fields (other posts in the series are included in the list). If you're not familiar with custom fields or if you just want to make sure you get the basics before moving further, this article is a great starting point.

<a href="http://justintadlock.com/archives/2007/10/24/using-wordpress-custom-fields-introduction"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/3.jpg" alt="Using WordPress Custom Fields" width="425" height="306" /></a>]]></description>
			<content:encoded><![CDATA[<p>One of the keys to WordPress&#8217;s flexibility and endless possibilities is the use of custom fields. With custom fields you can do all kinds of things, but most designers and developers who are new to WordPress are not familiar with how to put custom fields into practice. In this post we&#8217;ll look at a number of tutorials that will show you some potential uses of custom fields, as well as a handful of plugins that make it easier or more productive to use custom fields.</p>
<p><a href="http://justintadlock.com/archives/2007/10/24/using-wordpress-custom-fields-introduction"><strong>Using WordPress Custom Fields: Introduction</strong></a></p>
<p>This article from Justin Tadlock gives an overview of custom fields, and it&#8217;s actually the introductory post to a series on the subject of custom fields (other posts in the series are included in the list). If you&#8217;re not familiar with custom fields or if you just want to make sure you get the basics before moving further, this article is a great starting point.</p>
<p><a href="http://justintadlock.com/archives/2007/10/24/using-wordpress-custom-fields-introduction"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/3.jpg" alt="Using WordPress Custom Fields" width="425" height="306" /></a></p>
<p><a href="http://codex.wordpress.org/Using_Custom_Fields"><strong>Using Custom Fields</strong></a></p>
<p>The WordPress Codex of course provides some documentation on the subject of custom fields. Although many of the articles that are featured here will get into more specifics, it&#8217;s always a good idea to remeber that the codex is available when you have questions, or keep useful articles on the Codex like this one bookmarked.</p>
<p><a href="http://codex.wordpress.org/Using_Custom_Fields"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/5.jpg" alt="Using Custom Fields" width="425" height="315" /></a></p>
<p><a href="http://www.8164.org/wordpress-custom-field/"><strong>WordPress Custom Field Tutorial</strong></a></p>
<p>Jin Yang explains custom fields and shows how you can use them to customize a blog post by styling the background. In the example he chooses a custom background image for the post, which is a pretty cool trick for making your blog unique.</p>
<p><a href="http://www.8164.org/wordpress-custom-field/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/6.jpg" alt="WordPress Custom Field Tutorial" width="425" height="400" /></a></p>
<p><a href="http://perishablepress.com/press/2008/12/17/wordpress-custom-fields-tutorial/"><strong>Using WordPress Custom Fields: Part 1 &#8211; The Basics</strong></a></p>
<p>Perishable Press has a two=part series on custom fields. The first part includes some basic information and shows a few ways that custom fields can be used, including adding images to the sidebar.</p>
<p><a href="http://perishablepress.com/press/2008/12/17/wordpress-custom-fields-tutorial/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/15.jpg" alt="Using Custom Fields Part 1" width="425" height="301" /></a></p>
<p><a href="http://perishablepress.com/press/2008/12/22/wordpress-custom-fields-tips-tricks/"><strong>WordPress Custom Fields: Part 2 &#8211; Tips and Tricks</strong></a></p>
<p>The second part of the Perishable Press series goes into more detail on working with custom fields. The article covers topics like conditional display of custom field data, and showing data only if a custom field exists.</p>
<p><a href="http://perishablepress.com/press/2008/12/22/wordpress-custom-fields-tips-tricks/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/16.jpg" alt="Using Custom Fields Part 2" width="425" height="254" /></a></p>
<p><a href="http://justintadlock.com/archives/2007/10/27/wordpress-custom-fields-adding-images-to-posts"><strong>WordPress Custom Fields: Adding Images to Posts</strong></a></p>
<p>One of the more common uses for custom fields is to add images to a post. This article is part of Justin Tadlock&#8217;s series and he provides all the instruction and code that you will need to get a custom field to show an image on your posts.</p>
<p><a href="http://justintadlock.com/archives/2007/10/27/wordpress-custom-fields-adding-images-to-posts"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/1.jpg" alt="Adding Images to Posts" width="425" height="230" /></a></p>
<p><a href="http://www.tutorial9.net/web-tutorials/add-thumbnails-to-wordpress-with-custom-fields/"><strong>Add Thumbnails to WordPress with Custom Fields</strong></a></p>
<p>Tutorial9 also provides a similar tutorial for giving the basics of custom fields and using them to show thumbnails on the front page or on the post page.</p>
<p><a href="http://www.tutorial9.net/web-tutorials/add-thumbnails-to-wordpress-with-custom-fields/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/10.jpg" alt="Add Thumbnails with Custom Fields" width="425" height="242" /></a></p>
<p><a href="http://5thirtyone.com/archives/875"><strong>WordPress Custom Fields: Laying Text Over Your Lead Graphic</strong></a></p>
<p>Derek Punsalan shows a really nice approach to use a custom field for adding a background image behind the post title. This is another way to take advantage of the power of custom fields to create a blog that looks a little more unique.</p>
<p><a href="http://5thirtyone.com/archives/875"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/8.jpg" alt="Laying Text Over Your Lead Graphic" width="425" height="248" /></a></p>
<p><a href="http://www.wprecipes.com/how-to-easily-get-the-value-of-a-custom-field"><strong>How to Easily Get the Value of a Custom Field</strong></a></p>
<p>This is a brif post from WPRecipes that explains how you can the value of a custom field, with the necessary code provided.</p>
<p><a href="http://www.wprecipes.com/how-to-easily-get-the-value-of-a-custom-field"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/12.jpg" alt="How to Easily Get the Value of a Custom Field" width="425" height="256" /></a></p>
<p><a href="http://www.nathanrice.net/blog/an-easy-way-to-get-the-contents-of-a-custom-field/"><strong>An Easy Way to Get the Contents of a Custom Field</strong></a></p>
<p>In this article Nathan Rice shows a way to get the contents of a custom field by using less code. His approach involves editing the functions.php file, which he explains.</p>
<p><a href="http://www.nathanrice.net/blog/an-easy-way-to-get-the-contents-of-a-custom-field/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/7.jpg" alt="An Easy Way to Get the Contents of a Custom Field" width="425" height="224" /></a></p>
<p><a href="http://webdesignernotebook.com/wordpress/wordpress-how-to-display-multiple-values-of-a-custom-field-key/"><strong>How to Display Multiple Values of a Custom Field Key</strong></a></p>
<p>This article shows how you can use custom fields in situations where a post may have zero, one or multiple values of the same custom code. The example used in the tutorial is quotes. Some post may have none, while others may have several.</p>
<p><a href="http://webdesignernotebook.com/wordpress/wordpress-how-to-display-multiple-values-of-a-custom-field-key/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/13.jpg" alt="How to Display Values of a Custom Field Key" width="425" height="253" /></a></p>
<p><a href="http://www.themelab.com/2008/05/22/display-inline-ads-with-custom-fields-and-wordpress/"><strong>Display Inline Ads with Custom Fields and WordPress</strong></a></p>
<p>This post shows how you can use custom fields to add AdSense or other ads to specific posts. While there are plugins for this purpose, knowing how to do it manually is never a bad thing.</p>
<p><a href="http://www.themelab.com/2008/05/22/display-inline-ads-with-custom-fields-and-wordpress/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/17.jpg" alt="Display Inline Ads" width="425" height="281" /></a></p>
<p><a href="http://justintadlock.com/archives/2008/01/25/how-to-add-videos-to-your-wordpress-sidebar"><strong>How to Add Videos to Your WordPress Sidebar</strong></a></p>
<p>This is another post in Justin Tadlock&#8217;s series. In this article he shows how you can add YouTube videos to your sidebar, controlled by custom fields. This is an interesting idea that you don&#8217;t see in action very often, but could have a lot of potential in the right situation.</p>
<p><a href="http://justintadlock.com/archives/2008/01/25/how-to-add-videos-to-your-wordpress-sidebar"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/2.jpg" alt="How to Add Videos to Your WordPress Sidebar" width="425" height="253" /></a></p>
<p><a href="http://justintadlock.com/archives/2007/11/01/wordpress-custom-fields-listing-a-series-of-posts"><strong>WordPress Custom Fields: Listing a Series of Posts</strong></a></p>
<p>If you often write posts in a series, Justin Tadlock shows how you can list other posts from the series by using custom fields. The end result would be similar to a related posts plugin, except you would have more control over which posts are listed.</p>
<p><a href="http://justintadlock.com/archives/2007/11/01/wordpress-custom-fields-listing-a-series-of-posts"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/4.jpg" alt="Listing a Series of Posts" width="425" height="247" /></a></p>
<p><a href="http://www.darrenhoyt.com/2007/07/24/in-praise-of-wordpress-template-tags-part-ii-the-magazine-layout/"><strong>In Praise of WordPress Template Tags: Part 2</strong></a></p>
<p>Darren Hoyt has a two-part series about template tags and magazine-style themes. In the second part he covers a number of items, including custom fields as they relate to the magazine-style layout.</p>
<p><a href="http://www.darrenhoyt.com/2007/07/24/in-praise-of-wordpress-template-tags-part-ii-the-magazine-layout/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/9.jpg" alt="In Praise of WordPress Template Tags" width="425" height="220" /></a></p>
<p><a href="http://www.cagintranet.com/archive/wordpress-tip-3-awesome-custom-field-tricks/"><strong>WordPress Tip: 3 Awesome Custom Field Tricks</strong></a></p>
<p>Chris Cagle&#8217;s article covers three things you can do with custom fields: 1) a custom &#8220;read more&#8221;, 2) awesome thumbnailed recent posts, and 3) post-specific CSS overrides.</p>
<p><a href="http://www.cagintranet.com/archive/wordpress-tip-3-awesome-custom-field-tricks/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/11.jpg" alt="3 Awesome Custom Field Tricks" width="425" height="341" /></a></p>
<p><a href="http://performancing.com/wordpress-tips/jazz-your-site-28-ways-use-wordpress-custom-fields"><strong>Jazz Up Your Site: 28 Ways to Use Custom Fields</strong></a></p>
<p>Raj Dash&#8217;s article on Performancing can be helpful for seeing the potential of custom fields. You may see a few ideas on here that you hadn&#8217;t thought of before that would be useful on your site or for a client project.</p>
<p><a href="http://performancing.com/wordpress-tips/jazz-your-site-28-ways-use-wordpress-custom-fields"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/14.jpg" alt="28 Ways to Use Custom Fields" width="425" height="192" /></a></p>
<p><a href="http://wefunction.com/2008/10/tutorial-creating-custom-write-panels-in-wordpress/"><strong>Creating Custom Write Panels in WordPress</strong></a></p>
<p>While custom fields have plenty of power and potential, they&#8217;re not always the most user-friendly for clients. Function has provided this tutorial for creating custom write panels that will allow you to accomplish the same things as custom fields, but may be a little more manageable for some people, especially non-tech-savvy clients.</p>
<p><a href="http://wefunction.com/2008/10/tutorial-creating-custom-write-panels-in-wordpress/"><img class="imgborder" src="http://vandelaydesign.com/images/0509/wpcustom/18.jpg" alt="Creating Write Panels in WordPress" width="425" height="194" /></a></p>
<h3>Plugins for Working with Custom Fields:</h3>
<p>In addition to the tutorials featured above, there are a number of plugins that enhance the use of custom fields in some way, or make them easier to use. Here is a small sampling of useful plugins that are compatible with the latest version of WordPress, 2.7.1.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-field-template/"><strong>Custom Field Template</strong></a></p>
<p>This plugin adds the default custom fields on the Write Post/Page, making it a little bit easier to work with.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-fields-shortcode/"><strong>Custom Fields Shortcode</strong></a></p>
<p>You can use this plugin to show custom fields in your posts by using shortcode, with no modification required for your theme.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-field-images/"><strong>Custom Field Images </strong></a></p>
<p>With this plugin you can easily add images to your posts, pages and feeds. There is also functionality to display recent posts as images instead of text links.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-field-taxonomies/"><strong>Custom Field Taxonomies</strong></a></p>
<p>Custom Field Taxonomies will allow you to enhance the capabilities of your site by making some of your custom fields act like tags.</p>
<p><a href="http://wordpress.org/extend/plugins/advanced-custom-field-widget/"><strong>Advanced Custom Field Widget</strong></a></p>
<p>This plugin will allow you to easily show custom field data in the sidebar of specific posts, providing essentially limitless possibilities.</p>
<p><a href="http://wordpress.org/extend/plugins/custom-field-list-widget/"><strong>Custom Field List Widget</strong></a></p>
<p>This plugin lists all values of a choosable custom field name, groups the values of of a post and (hyper-) links the values to their posts as a sidebar widget.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-custom-fields-search/"><strong>WP Custom Fields Search</strong></a></p>
<p>This plugin helps to improve the functionality of the WordPress search by allowing multiple form inputs to search different aspects of a post. An example use (and the reason the plugin was created) is for searching a real estate website by factors such as price.</p>
<p><a href="http://wordpress.org/extend/plugins/more-fields/"><strong>More Fields </strong></a></p>
<p>More Fields is a WordPress plugin that adds boxes to the Write/Edit page. These boxes contains input fields, so that additional (more) fields can be added to a post.</p>
<p><strong>For more WordPress-related content, please see:</strong></p>
<ul>
<li><a href="http://vandelaydesign.com/blog/wordpress/community/">Top 10 Blogs for the WordPress Community</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/">Top 10 Tutorials for Developing WordPress Themes</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/category-hacks/">Category Hacks for WordPress Theme Designers</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/design-inspiration/">10 Excellent Sources for WordPress Design Inspiration</a></li>
</ul>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcustom-fields%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcustom-fields%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/custom-fields/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>WordPress Tutorial: Category Trick for WP 2.7</title>
		<link>http://vandelaydesign.com/blog/wordpress/category-styling/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/category-styling/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 23:53:23 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=416</guid>
		<description><![CDATA[A lot has been written about the recent release WordPress 2.7, and I think most WordPress users and developers understand that this release adds some significant features that open up some new options for theme development. I did a little bit of experimenting with one of the changes and I wanted to write a brief tutorial that demonstrates a real-world situation for taking advantage of a new feature.]]></description>
			<content:encoded><![CDATA[<p>A lot has been written about the recent release <a href="http://wordpress.org/">WordPress</a> 2.7, and I think most WordPress users  and developers understand that this release adds some significant features that  open up some new options for theme development. I did a little bit of  experimenting with one of the changes and I wanted to write a brief tutorial  that demonstrates a real-world situation for taking advantage of a new  feature.</p>
<p>Styling posts differently according to its category has  been possible in the past with WordPress, in fact, I wrote an article several  months ago called <a href="http://vandelaydesign.com/blog/wordpress/enhanced-sidebars-with-dynamic-content">Enhanced Sidebars with Dynamic Content</a>. That  post showed one approach using conditional statements in PHP to enhance the  sidebar. With WordPress 2.7 it&#8217;s now possible to achieve a similar end result  just by using CSS.</p>
<h3>What We&#8217;re Going to Do:</h3>
<p><strong>UPDATE:</strong> <em>I&#8217;m no longer using this approach on my blog, so you may notice that the examples are no longer relevant.</em></p>
<p>Instead of focusing on sidebar content like I did in the  earlier post, I&#8217;m going to show you an easy way to <strong>add a brief message at the  end of posts in a particular category</strong>. There may be a situation with your blog  (or one of a client) where you would like to have some type of content at the  beginning or end of a post, but only in a specific category. WordPress 2.7 makes  this possible because of the new category classes that are added to posts.</p>
<p>Before we get started with the tutorial I&#8217;d like to show  some potential reasons to use this technique to improve a blog.</p>
<h4>1. Add diversity to your blog</h4>
<p>Your regular blog readers and visitors will get used to  seeing the same design and the same sidebar content, and most of them will tune  it out. By adding something to posts in a specific category you can mix things  up just enough to catch the attention of some visitors.</p>
<h4>2. Make content more relevant and useful to visitors</h4>
<p>A lot of times the links in your sidebar or at the  bottom of posts may not be very relevant to those who are reading a particular  post. With category styling you can add content and navigation that is targeted  to specific content, making it easier for visitors to find what interests  them.</p>
<h4>3. Increase pageviews</h4>
<p>One of the results of a more relevant and useful blog is  an increase in pageviews per visitor. If you can use category styling to help  readers find what they are looking for, they&#8217;re liking to stay on your blog  longer and visit more pages.</p>
<h4>4. Increase subscribers</h4>
<p>One of the potential uses of this technique is to add a  call for subscriptions on posts from a specific category. Many blogs include a  call for subscriptions either before or after posts, but some bloggers choose  not to do this because things are a little cleaner and less cluttered without  it. But those bloggers may be interested in using a call for subscriptions only  on posts in a specific category, such as a &#8220;featured posts&#8221; category.</p>
<h4>5. Monetization</h4>
<p>It&#8217;s possible that category styling could be used to  promote products or services that are more relevant based on the category of the  post. We&#8217;ll look at some of the possibilities for this in just a minute.</p>
<h3>Possible Uses of Category Styling:</h3>
<p>Category styling is a neat trick for WordPress  developers, but knowing how to do it and applying it in a real-world scenario  are two different things. The approach that I&#8217;m going to use for this tutorial  could be applied for a wide variety of purposes. Here are some of the ways that  you could put this tutorial into practice for yourself.</p>
<h4>1. Link to a particular page or post that is of  interest</h4>
<p>Most blogs link to popular posts in their sidebars, but  with category-based styling it&#8217;s possible to customize the links to point  towards posts that are relevant to what the reader is seeing. These links could  be in the sidebar or they could be at the bottom of the post, like the approach  we&#8217;re going to use in this tutorial. Popular posts aren&#8217;t the only option here.  Take for instance my other blog, <a href="http://designm.ag/">DesignM.ag</a>. One of the categories of posts on  DesignM.ag is for the community news. Using this technique I could add a brief  paragraph to the top of all posts in the news category that encouraged visitors  to submit links to the news section, and I could link to the submission  page.</p>
<h4>2. Promotion of your own services or products</h4>
<p>Say you have a design blog and you sell some premium  WordPress themes from your site (or from anywhere else for that matter). Most  likely you probably write some blog posts about WordPress, maybe tips or  tutorials. In this case you could add some content to the beginning or end of  the posts in your &#8220;WordPress&#8221; category that would provide some basic information  about your premium themes and link to a page where visitors could buy them. You  could do the same thing with any type of product or service. If it&#8217;s relevant to  a particular category of blog content, the response from readers and visitors  should be better.</p>
<h4>3. Promote a specific affiliate program</h4>
<p>A lot of bloggers attempt to monetize their blog through  affiliate products. If you want to include an ad or a link to a product that is  relevant to a specific post you could add a section at the end of posts that  does just that based on the category of the post.</p>
<h4>4. Cross promote another blog</h4>
<p>In <a href="http://vandelaydesign.com/blog/wordpress/enhanced-sidebars-with-dynamic-content">Enhanced Sidebars with Dynamic Content</a> one of the  specific examples that I used placed a sidebar link to my social media blog, <a href="http://traffikd.com/">Traffikd</a>, when the visitor  was seeing a post in the social media category. I could basically do the same  thing. With the approach that I&#8217;m covering in this post I could add that content  at the end of a post rather than in the sidebar and use CSS instead of PHP.</p>
<h3>How to Set Up Category-Specific Content in WordPress  2.7</h3>
<p>The example that I&#8217;m going to walk through in this  tutorial will use my blog <a href="http://designm.ag/">DesignM.ag</a>. DesignM.ag includes blog posts in various  categories, a community news section, and a design gallery. One of the post  categories is &#8220;Inspiration.&#8221; In this category I publish posts that provide  various types of design inspiration, and I&#8217;m going to assume that visitors who  enjoy this type of content might also enjoy visiting the design gallery on the  site.</p>
<p>What I&#8217;m going to do is set up a brief paragraph that will encourage  visitors to browse through the gallery if they are looking for more inspiration.  I&#8217;m going to use CSS so that this paragraph only shows up on posts in the  Inspiration category.</p>
<p>Here is a screenshot of the end result.</p>
<p><img class="imgborder" src="http://vanimg.s3.amazonaws.com/dmgall.jpg" alt="DesignM.ag Screenshot" width="425" height="127" /></p>
<h4>Step 1: Add the div or Paragraph to the single.php File  of the Theme</h4>
<p>Obviously, the content of the paragraph or div that you  use will depend on what you&#8217;re trying to accomplish. I&#8217;m just adding some simple  content shown below.</p>
<blockquote><p>Looking for More Design Inspiration?<br />
We also have a  web design gallery that you may enjoy. Several new websites are featured each  week. You can subscribe to our all-inclusive feed if you would like to get  updates on gallery submissions, articles, and news items.</p></blockquote>
<h4>Step 2: Make Sure The Theme is Set to Produce the  Category-Based Class</h4>
<p>Most themes being used will need to have a minor tweak  in order to take advantage of the new feature in WordPress 2.7. In the  DesignM.ag theme I added the following code to a content div that contains the  post:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php post_class(); ?&amp;gt;</div></div>
<p>If your blog is on WordPress 2.7 and you have this code,  it will produce a class according to the category of the post. For example, the  content div in my theme will have the following code on posts in the Inspiration  category:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;div id=&quot;content&quot; class=&quot;post &nbsp;category-inspiration&quot;&amp;gt;</div></div>
<p>Find a div in your theme that contains the post, and add the code to create the class.</p>
<h4>Step 3: Give the Div or Paragraph an ID</h4>
<p>In order to style the div I need to give it an ID, so  I&#8217;m going to call it &#8220;gallery-promo&#8221;. See the example HTML code from my  single.php below.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;div id=&quot;gallery-promo&quot;&amp;gt;&amp;lt;h5&amp;gt;Looking for More &nbsp;Design Inspiration?&amp;lt;/h5&amp;gt;<br />
&amp;lt;p&amp;gt;We also have a &amp;lt;a href=&quot;http://designm.ag/category/gallery/&quot;&amp;gt;web design gallery&amp;lt;/a&amp;gt; that you may enjoy. Several new websites are featured &nbsp;each week. You can subscribe to our &amp;lt;a href=&quot;http://feeds.feedburner.com/designmagall&quot;&amp;gt;all-inclusive feed&amp;lt;/a&amp;gt; if you would like to get updates on gallery submissions, &nbsp;articles, and news items.&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;</div></div>
<h4>Step 4: Style the Div or Paragraph to display:none</h4>
<p>The first thing we&#8217;re going to do is style this  paragraph to not be shown. The reason for doing this is that I want to exclude  it on every category aside from &#8220;Inspiration.&#8221; The code used is shown below.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">#gallery-promo { display: none; }</div></div>
<h4>Step 5: Style the Paragraph Appropriately for the  Inspiration Category</h4>
<p>WordPress 2.7 will add the class &#8220;category-inspiration&#8221;  to all posts in the Inspiration category (Obviously, you would replace the word  &#8220;inspiration&#8221; with whatever category you&#8217;re working with. So if your category is  called &#8220;finance&#8221;, the class would be &#8220;category-finance&#8221;). So I want to add the  CSS code shown below, which will override the display:none and the paragraph  will be shown and styled on posts in the Inspiration category.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.category-inspiration #gallery-promo { display: block; &nbsp;padding: 10px; background-color: #DEDBBE; border: 1px solid #B7B075; }</div></div>
<p>Here&#8217;s a screenshot of the end result in action. You can see it live by visiting <a href="http://designm.ag/inspiration/non-profit-websites/">40+ Inspirational Non-Profit Websites</a>.</p>
<p><img class="imgborder" src="http://vanimg.s3.amazonaws.com/dmgall2.jpg" alt="DesignM.ag Screenshot" width="425" height="400" /></p>
<h3>Conclusion:</h3>
<p>I now have a little &#8220;teaser&#8221; paragraph that shows up at  the end of all posts in the Inspiration category that attempts to funnel  visitors to the gallery. The paragraph only shows up on Inspiration posts. This  technique could easily be used for any number of purposes.</p>
<p>Personally, I wouldn&#8217;t use this technique too much because your pages will wind up with a lot of code that&#8217;s not being displayed because of the CSS. But for one small div I think it&#8217;s a decent way to improve a blog.</p>
<p>If you have any thoughts or suggestions or critiques  about this technique, please share in the comments.</p>
<p><em>If you like getting design inspiration by looking at excellent blog designs, you&#8217;ll love our new gallery site <a href="http://blogdesignheroes.com/">Blog Design Heroes</a>.</em></p>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcategory-styling%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcategory-styling%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/category-styling/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>17 Specialty WordPress Themes</title>
		<link>http://vandelaydesign.com/blog/wordpress/17-specialty-wordpress-themes/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/17-specialty-wordpress-themes/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 00:40:04 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=392</guid>
		<description><![CDATA[One of the great benefits of using WordPress is the wide variety of themes that are available for all kinds of purposes. As WordPress has become more popular as a CMS rather than just a blogging platform, specialty themes have also become increasingly popular.

About 10 months ago I published a collection of <a href="http://vandelaydesign.com/blog/wordpress/specialty-themes/">20 specialty WordPress themes</a> that I had come across at that time. Today I'd like to feature another 17 specialty themes, all of which are free. Over at DesignM.ag I published a list of the <a href="http://designm.ag/resources/premium-specialty-themes/">top ten premium specialty themes</a>.

<a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/"><strong>Agregado</strong></a>

A life streaming WordPress theme.

<a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-ag.jpg" alt="Agregado" width="425" height="231" /></a>]]></description>
			<content:encoded><![CDATA[<p>One of the great benefits of using WordPress is the wide variety of themes that are available for all kinds of purposes. As WordPress has become more popular as a CMS rather than just a blogging platform, specialty themes have also become increasingly popular.</p>
<p>About 10 months ago I published a collection of <a href="http://vandelaydesign.com/blog/wordpress/specialty-themes/">20 specialty WordPress themes</a> that I had come across at that time. Today I&#8217;d like to feature another 17 specialty themes, all of which are free. Over at DesignM.ag I published a list of the <a href="http://designm.ag/resources/premium-specialty-themes/">top ten premium specialty themes</a>.</p>
<p><em>If you like getting design inspiration by looking at excellent blog designs, you&#8217;ll love our new gallery site <a href="http://blogdesignheroes.com/">Blog Design Heroes</a>.</em></p>
<p><a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/"><strong>Agregado</strong></a></p>
<p>A life streaming WordPress theme.</p>
<p><a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-ag.jpg" alt="Agregado" width="425" height="231" /></a></p>
<p><a href="http://www.thekingcart.com/2008/10/02/crafty-cart-free-wordpress-ecommerce-plugin-theme/"><strong>Crafty Cart</strong></a></p>
<p>Free theme especially for e-commerce.</p>
<p><a href="http://www.thekingcart.com/2008/10/02/crafty-cart-free-wordpress-ecommerce-plugin-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-cart.jpg" alt="Crafty Cart" width="425" height="238" /></a></p>
<p><a href="http://www.revolutiontwo.com/themes/album"><strong>Album Theme</strong></a></p>
<p>One of the new Revolution Two themes.</p>
<p><a href="http://www.revolutiontwo.com/themes/album"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-album.jpg" alt="Album Theme" width="425" height="224" /></a></p>
<p><a href="http://www.revolutiontwo.com/themes/tv"><strong>RevolutionTV</strong></a></p>
<p>A theme for videos.</p>
<p><a href="http://www.revolutiontwo.com/themes/tv"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-tv.jpg" alt="RevolutionTV" width="425" height="248" /></a></p>
<p><a href="http://www.revolutiontwo.com/themes/church"><strong>Church Theme</strong></a></p>
<p>Revolution&#8217;s theme created with churches in mind.</p>
<p><a href="http://www.revolutiontwo.com/themes/church"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-church.jpg" alt="Church Theme" width="425" height="223" /></a></p>
<p><a href="http://www.revolutiontwo.com/themes/black-canvas"><strong>Black Canvas</strong></a></p>
<p>A photoblogging or gallery theme.</p>
<p><a href="http://www.revolutiontwo.com/themes/black-canvas"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-canvas.jpg" alt="Black Canvas" width="425" height="225" /></a></p>
<p><a href="http://webrevolutionary.com/sharpfolio/"><strong>Sharpfolio</strong></a></p>
<p>One of many themes intended specifically for portfolio sites.</p>
<p><a href="http://webrevolutionary.com/sharpfolio/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-sharp.jpg" alt="Sharpfolio" width="425" height="230" /></a></p>
<p><a href="http://blog.gooddesignweb.com/photo-clip"><strong>Photo Clip</strong></a></p>
<p>A gallery theme.</p>
<p><a href="http://blog.gooddesignweb.com/photo-clip"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-clip.jpg" alt="Photo Clip" width="425" height="222" /></a></p>
<p><a href="http://www.woothemes.com/2008/10/snapshot/"><strong>Snapshot</strong></a></p>
<p>A free theme from WooThemes for galleries or portfolios.</p>
<p><a href="http://www.woothemes.com/2008/10/snapshot/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-snap.jpg" alt="Snapshot" width="425" height="210" /></a></p>
<p><a href="http://www.dailywp.com/portfolio-wordpress-theme/"><strong>Portfolio</strong></a></p>
<p>Another popular portfolio theme.</p>
<p><a href="http://www.dailywp.com/portfolio-wordpress-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-port.jpg" alt="Portfolio" width="425" height="229" /></a></p>
<p><a href="http://rockinthemes.com/two-free-wordpress-photo-gallery-themes-released-by-shutterthemes/"><strong>Free Photo Gallery</strong></a></p>
<p>Another photoblogging or gallery theme.</p>
<p><a href="http://rockinthemes.com/two-free-wordpress-photo-gallery-themes-released-by-shutterthemes/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-freephoto.jpg" alt="Free Photo Gallery" width="425" height="220" /></a></p>
<p><a href="http://www.urbantrash.net/cssgallery/2008/09/13/css-gallery-theme-20-free-showcase-theme-for-wordpress/"><strong>CSS Gallery Theme 2.0</strong></a></p>
<p>A theme specifically designed for CSS galleries.</p>
<p><a href="http://www.urbantrash.net/cssgallery/2008/09/13/css-gallery-theme-20-free-showcase-theme-for-wordpress/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-gall20.jpg" alt="CSS Gallery Theme 2.0" width="425" height="212" /></a></p>
<p><a href="http://themeshaper.com/blog/wordpress-domain-parking-theme/"><strong>LaunchPad</strong></a></p>
<p>A theme for use before your site is completed.</p>
<p><a href="http://themeshaper.com/blog/wordpress-domain-parking-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-pad.jpg" alt="LaunchPad" width="425" height="231" /></a></p>
<p><a href="http://artisanthemes.com/themes/wp-contact-manager/"><strong>WP Contact Manager</strong></a></p>
<p>For turning WordPress into a contact manager.</p>
<p><a href="http://artisanthemes.com/themes/wp-contact-manager/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-contact.jpg" alt="WP Contact Manager" width="425" height="241" /></a></p>
<p><a href="http://www.wpdesigner.com/2008/01/24/gossip-wordpress-theme/"><strong>Gossip</strong></a></p>
<p>A theme created for gossip blogs.</p>
<p><a href="http://www.wpdesigner.com/2008/01/24/gossip-wordpress-theme/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-gossip.jpg" alt="Gossip" width="425" height="246" /></a></p>
<p><a href="http://redworks.sk/linquist/"><strong>Linquist</strong></a></p>
<p>A simple portfolio theme.</p>
<p><a href="http://redworks.sk/linquist/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-lin.jpg" alt="Linquist" width="425" height="236" /></a></p>
<p><a href="http://wordpressthemes.free.fr/index.php/wp-themes/theme-wordpress-portfolio-gratuit-fhi-zin"><strong>Portfolio Gratuit</strong></a></p>
<p>Another free portfolio theme.<br />
<a href="http://wordpressthemes.free.fr/index.php/wp-themes/theme-wordpress-portfolio-gratuit-fhi-zin"><br />
<img class="imgborder" src="http://vanimg.s3.amazonaws.com/wp-grat.jpg" alt="Portfolio Gratuit" width="425" height="327" /></a></p>
<p>For more WordPress resources, see:</p>
<ul>
<li><a href="http://vandelaydesign.com/blog/wordpress/community/">Top 10 Blogs for the WordPress Community</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/">Top 10 Tutorials for Developing WordPress Themes</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/category-hacks/">Category Hacks for WordPress Theme Designers</a></li>
</ul>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2F17-specialty-wordpress-themes%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2F17-specialty-wordpress-themes%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/17-specialty-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Top 10 Blogs for the WordPress Community</title>
		<link>http://vandelaydesign.com/blog/wordpress/community/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/community/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 13:39:00 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=393</guid>
		<description><![CDATA[One of the great things about the WordPress platform is the excellent community surrounding it. Whether you are looking for help with a specific problem or if you're just interested in finding some blogs to follow for occasional tutorials, there are plenty of resources available. Here is a look at 10 of the best sites for WordPress users and theme designers.
<h3>Weblog Tools Collection</h3>
There is probably no better resource for staying up-to-date with theme and plugin releases than <a href="http://weblogtoolscollection.com/">Weblog Tools Collection</a>. Whether you want to find new themes and plugins from others or get some exposure for your own, Weblog Tools Collection is a great resource. In addition, it's a great resource for general WP news.

<a href="http://weblogtoolscollection.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wtc.jpg" alt="Weblog Tools Collection" width="375" height="200" /></a>]]></description>
			<content:encoded><![CDATA[<p>One of the great things about the WordPress platform is the excellent community surrounding it. Whether you are looking for help with a specific problem or if you&#8217;re just interested in finding some blogs to follow for occasional tutorials, there are plenty of resources available. Here is a look at 10 of the best sites for WordPress users and theme designers.</p>
<h3>Weblog Tools Collection</h3>
<p>There is probably no better resource for staying up-to-date with theme and plugin releases than <a href="http://weblogtoolscollection.com/">Weblog Tools Collection</a>. Whether you want to find new themes and plugins from others or get some exposure for your own, Weblog Tools Collection is a great resource. In addition, it&#8217;s a great resource for general WP news.</p>
<p><a href="http://weblogtoolscollection.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wtc.jpg" alt="Weblog Tools Collection" width="375" height="200" /></a></p>
<h3>WPCandy</h3>
<p><a href="http://wpcandy.com/">WPCandy</a> is one of my favorite sources of WordPress-related content. The blog publishes a lot of content that&#8217;s helpful for WordPress designers and users, and the site also includes a gallery of WordPress-powered sites, and a place for readers to submit news. You can also find reviews of new themes and plugins.</p>
<p><a href="http://wpcandy.com"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wpcandy.jpg" alt="WPCandy" width="375" height="200" /></a></p>
<h3>NETTUTS</h3>
<p><a href="http://nettuts.com/">NETTUTS</a> is not specifically a WordPress-focused site, but if you&#8217;re looking for high-quality tutorials for WP development, this is the place to go. Not all of the content is WordPress-related, but NETTUTS provides some of the best, and most detailed, tutorials for building or customizing WordPress themes.</p>
<p><a href="http://nettuts.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-nettuts.jpg" alt="NETTUTS" width="375" height="200" /></a></p>
<h3>Daily Blog Tips</h3>
<p><a href="http://www.dailyblogtips.com/">Daily Blog Tips</a> is one of the leading blogs about blogging, and Daniel consistently publishes content for WordPress users. In addition to WP-related blog posts, Daily Blog Tips occasionally releases a free theme.</p>
<p><a href="http://dailyblogtips.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-dbt.jpg" alt="DBT" width="375" height="200" /></a></p>
<h3>Cats Who Code</h3>
<p><a href="http://www.catswhocode.com/blog/">Cats Who Code</a> is another excellent blog for finding tutorials for WP designers and users. The blog is updated frequently and the quality of content is high.</p>
<p><a href="http://www.catswhocode.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-cats.jpg" alt="Cats Who Code" width="375" height="200" /></a></p>
<h3>Pro Blog Design</h3>
<p>Michael Martin of <a href="http://www.problogdesign.com/">Pro Blog Design</a> writes some of the best articles and tutorials for WP theme designers. The archives at Pro Blog Design provide plenty of content on a number of important issues for WordPress designers and developers.</p>
<p><a href="http://problogdesign.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-pbd.jpg" alt="Pro Blog Design" width="375" height="200" /></a></p>
<h3>WPZOOM</h3>
<p><a href="http://www.wpzoom.com/">WPZOOM</a> is a blog that focuses on all things WordPress. You&#8217;ll find collections of themes, theme announcements and reviews, and other information that WordPress users and designers can appreciate.</p>
<p><a href="http://www.wpzoom.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wpzoom.jpg" alt="WPZOOM" width="375" height="200" /></a></p>
<h3>The WordPress Podcast</h3>
<p><a href="http://wp-community.org/">The WordPress Podcast</a> is not updated extremely frequently, but for WP-related news it&#8217;s a good resource to have in your your feed reader.</p>
<p><a href="http://wp-community.org/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wppodcast.jpg" alt="WP Podcast" width="375" height="200" /></a></p>
<h3>WpRecipes</h3>
<p><a href="http://www.wprecipes.com/">WpRecipes</a> provides a lot of tips and brief tutorials for working with the WordPress platform. This site is only a few months old, but posts are published on a daily basis.</p>
<p><a href="http://www.wprecipes.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wprec.jpg" alt="WpRecipes" width="375" height="200" /></a></p>
<h3>WordPress Hacks</h3>
<p><a href="http://wphacks.com/">WordPress Hacks</a> publishes frequently, with an archive full of useful content. The posts focus on WordPress news, tips, tutorials, and reviews.</p>
<p><a href="http://wphacks.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wphacks.jpg" alt="WordPress Hacks" width="375" height="200" /></a></p>
<h3>Other Great Resources for the WordPress Community:</h3>
<p>Aside from blogs, these resources are excellent resources for both users and designers working with WordPress.</p>
<h3>We Love WP</h3>
<p><a href="http://welovewp.com/">We Love WP</a> is an excellent design gallery that showcases only websites powered by WordPress. If you design WordPress themes of any kind (free, premium, custom), you certainly could benefit from seeing what others are doing on the WordPress platform.</p>
<p><a href="http://welovewp.com"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-welovewp.jpg" alt="We Love WP" width="375" height="200" /></a></p>
<h3>WPscoop</h3>
<p><a href="http://wpscoop.com/">WPscoop</a> is a social media site that focuses exclusively on WordPress-related news and content. Like any niche social media site, the audience is considerably smaller than major social news sites; however, if you&#8217;re looking to find the best WordPress tutorials, news, theme and plugin announcements, try WPscoop.</p>
<p><a href="http://wpscoop.com/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wpscoop.jpg" alt="WPscoop" width="375" height="200" /></a></p>
<h3>The Official WordPress Forums</h3>
<p>If you&#8217;re having an issue with a WordPress theme or just have a general question about the platform, the <a href="http://wordpress.org/support/">WP forums</a> should be one of your first stops. Often you&#8217;ll be able to find what you&#8217;re looking for just by searching the existing threads, and if that doesn&#8217;t produce an answer you can always post your question. The community at the forums is very active and you&#8217;re likely to get a quick and helpful response.</p>
<p><a href="http://wordpress.org/support/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/wpcomm-wpforums.jpg" alt="WP forums" width="375" height="200" /></a></p>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcommunity%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcommunity%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/community/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Elegant Themes Giveaway!</title>
		<link>http://vandelaydesign.com/blog/wordpress/elegant-themes-giveaway/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/elegant-themes-giveaway/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 11:46:35 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=385</guid>
		<description><![CDATA[If you're looking for a new theme for your WordPress blog or website, you're in luck. Nick Roach of <a href="http://www.elegantthemes.com/">Elegant Themes</a> has offered to give four one-year memberships to readers of Vandelay Design.

I'm sure many of you are already familiar with Elegant Themes, but you may or may not be aware of their business model and how it differs from most premium themes. With Elegant Themes you can pay $19.95 per year for unlimited access to their marketplace of themes. There are currently 16 themes available, some with multiple color schemes to choose from, and more themes are being developed.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking for a new theme for your WordPress blog or website, you&#8217;re in luck. Nick Roach of <a href="http://www.elegantthemes.com/">Elegant Themes</a> has offered to give four one-year memberships to readers of Vandelay Design.</p>
<p>I&#8217;m sure many of you are already familiar with Elegant Themes, but you may or may not be aware of their business model and how it differs from most premium themes. With Elegant Themes you can pay $19.95 per year for unlimited access to their marketplace of themes. There are currently 16 themes available, some with multiple color schemes to choose from, and more themes are being developed.</p>
<p>The price for membership in Elegant Themes can&#8217;t be beat (unless you win one of the free memberships, in that case I guess it can be beat <img src='http://vandelaydesign.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) and the themes are high quality. If you&#8217;re not familiar with their work, please take a moment to <a href="http://www.elegantthemes.com/">check them out</a>.</p>
<h3>Contest Rules</h3>
<p>As I mentioned earlier, Nick has agreed to give away one-year memberships to four of our readers. In order to enter the contest, please leave a comment on this post and simply state why you would like the membership, which theme(s) you would use, or what you would do with the themes if you were to win. I&#8217;ll choose two winners based on comments and the other two winners will be selected using a random number generator. Be sure that you leave a vaild email address where you can be reached in case you win. The winners will be chosen on Saturday, November 15th, so be sure to get your comments in before then. Rather than publishing a new post to announce the winners, I&#8217;ll update this post and the winners will be contacted by email.</p>
<h3>A Glimpse of Elegant Themes</h3>
<p><a href="http://www.elegantthemes.com/gallery/cion/"><strong>Cion</strong></a></p>
<p><a href="http://www.elegantthemes.com/gallery/cion/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/cion.jpg" alt="Cion" width="425" height="239" /></a></p>
<p><a href="http://www.elegantthemes.com/gallery/influx/"><strong>Influx</strong></a></p>
<p><a href="http://www.elegantthemes.com/gallery/influx/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/influx.jpg" alt="Influx" width="425" height="241" /></a></p>
<p><a href="http://www.elegantthemes.com/gallery/wooden/"><strong>Wooden</strong></a></p>
<p><a href="http://www.elegantthemes.com/gallery/wooden/"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/woodentheme.jpg" alt="Wooden" width="425" height="240" /></a></p>
<h3>UPDATE:</h3>
<p>The contest has just ended. Here are the winners:</p>
<p><strong>Random winners:</strong> Gretchen Imbergamo (comment #14) and Alison (comment #36)<br />
<strong>My choices</strong>: Pablo (comment #23) and Matt (comment #19).</p>
<p>Congratulation! Nick will be contact you soon with the details.</p>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Felegant-themes-giveaway%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Felegant-themes-giveaway%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/elegant-themes-giveaway/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Interview with Brian Gardner of Revolution Two</title>
		<link>http://vandelaydesign.com/blog/wordpress/brian-gardner-interview/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/brian-gardner-interview/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 23:08:11 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[interview]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=384</guid>
		<description><![CDATA[Those of you who have been around the WordPress community for a while are no doubt familiar with Brian Gardner and his popular line of Revolution themes. The Revolution themes have been incredibly well-liked by bloggers, website owners and designers, and they're probably the most recognizable of the premium WordPress themes.

In recent weeks Brian and Jason Schuller have taken some bold steps with the new generation of Revolution themes, Revolution Two. These high quality themes are now free and open source (the original Revolution themes are no longer available). Since WordPress is an open source platform, the idea was to align the focus of Revolution with that of WordPress in general.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.revolutiontwo.com"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/rev2.jpg" alt="Revolution Two" width="425" height="258" /></a></p>
<p>Those of you who have been around the WordPress community for a while are no doubt familiar with <a href="http://www.briangardner.com">Brian Gardner</a> and his popular line of Revolution themes. The Revolution themes have been incredibly well-liked by bloggers, website owners and designers, and they&#8217;re probably the most recognizable of the premium WordPress themes.</p>
<p>In recent weeks Brian and <a href="http://www.jdidit.com/">Jason Schuller</a> have taken some bold steps with the new generation of Revolution themes, <a href="http://www.revolutiontwo.com/">Revolution Two</a>. These high quality themes are now free and open source (the original Revolution themes are no longer available). Since WordPress is an open source platform, the idea was to align the focus of Revolution with that of WordPress in general.<br />
<a href="http://www.revolutiontwo.com"><br />
<img class="imgborder" src="http://vanimg.s3.amazonaws.com/revlife.jpg" alt="Revolution Life" width="425" height="243" /></a></p>
<p>Brian covered the subject of changing from premium themes to open source themes on his blog (see <a href="http://www.briangardner.com/blog/revolution-going-open-source.htm">his announcement post</a> for all the details). Here is a brief excerpt:</p>
<blockquote><p>Jason and I want to develop a resource and community that is perfectly aligned with <a href="http://wordpress.org/">WordPress</a>. Both he and I have been fortunate enough to leave our day jobs within the past year and have developed our own media companies. None of that would have been possible without the existence of WordPress, which is solely built and supported by the open source community.</p></blockquote>
<p>Currently there are <a href="http://www.revolutiontwo.com">11 themes available</a> for download, free of charge. Users then have the option to purchase support packages that include access to tutorials as well as general theme support.</p>
<p><a href="http://www.revolutiontwo.com"><img class="imgborder" src="http://vanimg.s3.amazonaws.com/revchrome.jpg" alt="Revolution Chrome" width="425" height="243" /></a></p>
<p>Last week Brian was kind enough to take the time to answer a few questions for me. Those of you who work with the WordPress platform will most likely want to get familiar with these themes and the new business model of Revolution Two. The original Revolution themes had a huge impact on the WordPress community and were very influential in the premium theme marketplace. I expect that Revotion Two will also be extremely influential.</p>
<p>Here is the interview with Brian.</p>
<p>Do you currently have plans to release new themes in the future as part<br />
of Revolution Two?</p>
<blockquote><p>Yes, I currently have 2 themes that I am in the middle of developing, and Jason Schuller has 3 or 4 concepts as well that should be released in the near future.</p></blockquote>
<p>What has the response been from users to the free themes with optional<br />
services and support as opposed to selling premium themes?</p>
<blockquote><p>The response has been overwhelmingly positive &#8211; this gives users a chance to play with the themes first, and then can purchase the support membership if necessary. Not to mention that $99 or $149 for access to all of the themes and support is a much better deal than any of the other situations out there.</p></blockquote>
<p>Do the Revolution Two themes have any type of enhanced admin features or<br />
functionalities like some premium themes?</p>
<blockquote><p>Yes, I have a theme options page which makes implementing video, advertising, Feedburner and some other things very easy to do. I am also working a CSS switcher into the theme options page, so instead of uploading 3 color theme variations, they are built on the same core files and toggled with the switcher.</p></blockquote>
<p>In the early days of Revolution Two, have you been able to tell if the<br />
response has been stronger from designers or from end users of the themes?</p>
<blockquote><p>I think the response has been stronger from users &#8211; there is a lot of involvement going on in the forums, and a lot of great sites already popping up with the new themes.</p></blockquote>
<p>As the creator of these themes, how do you feel that Revolution Two<br />
themes stack up to the popular premium Revolution themes?</p>
<blockquote><p>From a functional and coding standpoint, the new themes were built on the old ones, but are already being enhanced, with plans in the future to continue to raise the bar.</p></blockquote>
<p>Most premium themes have separate licenses for single use and for<br />
developers who want to use multiple copies. Is there anything similar with<br />
Revolution Two in terms of support? Can designers purchase a support package and use the themes for multiple clients?</p>
<blockquote><p>Jason and I have completely abandoned the idea of policing theme licenses, which is one of many reasons we went open source. Our membership can be purchased either for 1 year, or lifetime. You can download and use the themes on any number of sites, we have no restrictions.</p></blockquote>
<p>Thank you Brian for taking the time to answer these questions, and thanks for your contributions to fellow WordPress users!</p>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fbrian-gardner-interview%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fbrian-gardner-interview%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/brian-gardner-interview/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Top 10 Tutorials for Developing WordPress Themes</title>
		<link>http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:36:49 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[theme development]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=375</guid>
		<description><![CDATA[Being able to design custom WordPress themes is almost a must for today's web designers. The fun thing with WordPress is that there's always something new that you can learn to make the platform work better for you and your clients. These 10 tutorials will teach basic WordPress theming as well as some more advanced skills.
<h4><a href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/"><strong>Designing for WordPress</strong></a></h4>
Chris Coyier of CSS-Tricks has a three-part video series for downloading and installing WordPress, all the way through everything else involved with designing a custom theme. The example theme that is built through the series is a personalized homepage theme.

<a href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/coyiertut.jpg" alt="" width="425" height="250" /></a>]]></description>
			<content:encoded><![CDATA[<p>Being able to design custom WordPress themes is almost a must for today&#8217;s web designers. The fun thing with WordPress is that there&#8217;s always something new that you can learn to make the platform work better for you and your clients. These 10 tutorials will teach basic WordPress theming as well as some more advanced skills.</p>
<p><em>If you like getting design inspiration by looking at excellent blog designs, you&#8217;ll love our new gallery site <a href="http://blogdesignheroes.com/">Blog Design Heroes</a>.</em></p>
<h4><a href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/"><strong>Designing for WordPress</strong></a></h4>
<p>Chris Coyier of CSS-Tricks has a three-part video series for downloading and installing WordPress, all the way through everything else involved with designing a custom theme. The example theme that is built through the series is a personalized homepage theme.</p>
<p><a href="http://css-tricks.com/designing-for-wordpress-complete-series-downloads/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/coyiertut.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://themetation.com/2008/07/14/how-to-create-wordpress-themes-from-scratch-part-1/"><strong>How to Create WordPress Themes from Scratch</strong></a></h4>
<p>Kai Loon wrote this popular series (see parts <a href="http://themetation.com/2008/07/14/how-to-create-wordpress-themes-from-scratch-part-1/">1</a>, <a href="http://themetation.com/2008/07/15/how-to-create-wordpress-themes-from-scratch-part-2/">2</a>, <a href="http://themetation.com/2008/07/17/how-to-create-wordpress-themes-from-scratch-part-3a/">3a</a>, and <a href="http://themetation.com/2008/07/17/how-to-create-wordpress-themes-from-scratch-part-3b/">3b</a>). It&#8217;s very detailed and covers designing the theme in Photoshop, slicing and coding, and all of the files involved in the theme. If your looking for a great guide to take you through the etire process of desigining and coding, this is a good place to start.</p>
<p><a href="http://themetation.com/2008/07/14/how-to-create-wordpress-themes-from-scratch-part-1/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/themetationtut.jpg" alt="" width="425" height="250" /></a></p>
<h4><strong><a href="http://www.catswhocode.com/blog/featured/how-to-make-a-control-panel-for-your-wordpress-theme-32">How to Make a Control Panel for Your WordPress Theme</a></strong></h4>
<p>While there are plenty of good tutorials for designing and coding themes, there are very few that touch on the process of creating a control panel. This one from Cats Who Code takes you through the process, as used in the <a href="http://www.darrenhoyt.com/2007/11/27/mimbo-22-is-available-for-download/">Mimbo theme</a>.</p>
<p><a href="http://www.catswhocode.com/blog/featured/how-to-make-a-control-panel-for-your-wordpress-theme-32"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/mimbocontrol.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://nettuts.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/"><strong>How to Create a WordPress Theme from Scratch</strong></a></h4>
<p>NETTUTS has a two-part series (see parts <a href="http://nettuts.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/">1</a> and <a href="http://nettuts.com/working-with-cmss/how-to-create-a-wordpress-theme-from-scratch-part-2/">2</a>) that&#8217;s a good resource for new theme developers. It cover the basic files of the theme, including CSS, and the tutorial walks through the development of a basic sample theme.</p>
<p><a href="http://nettuts.com/site-builds/how-to-create-a-wordpress-theme-from-scratch/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/themefromscratch.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://nettuts.com/working-with-cmss/build-a-newspaper-theme-with-wp_query-and-the-960-css-framework/"><strong>Build a Newspaper Theme with WP_Query and the 960 CSS Framework</strong></a></h4>
<p>For a non-traditional or magazine-style layout, this tutorial will take you through the specific WordPress coding that&#8217;s involved and you&#8217;ll create a simple, but attractive, sample layout.</p>
<p><a href="http://nettuts.com/working-with-cmss/build-a-newspaper-theme-with-wp_query-and-the-960-css-framework/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/wpnewspaper.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://nettuts.com/html-css-techniques/build-a-basic-newspaper-style-layout-with-wordpress-and-jquery/"><strong>Build a Basic Newspaper Layout with WordPress and jQuery</strong></a></h4>
<p>This is another excellent tutorial from NETTUTS for building a different newspaper layout. Of course, it covers all the coding of the various WP files involved.</p>
<p><a href="http://nettuts.com/html-css-techniques/build-a-basic-newspaper-style-layout-with-wordpress-and-jquery/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/wpnewspaper2.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/"><strong>So You Want to Create WordPress Themes Huh?</strong></a></h4>
<p>Small Potato wrote a detail 16-part series on all aspects of theme development. Most of the individual sections of the theme are not that long, so 16 parts isn&#8217;t as intimidating or time-consuming as it may seem.</p>
<p><a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/themeshuh.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://anekostudios.com/2006/09/21/how-to-create-a-wordpress-template-or-theme/"><strong>How to Create a WordPress Template or Theme</strong></a></h4>
<p>This tutorial from Aneko Studios was one of the first ones I read on WordPress theme development. It covers the different files that make up the WordPress theme and the basic coding that is involved with each.</p>
<p><a href="http://anekostudios.com/2006/09/21/how-to-create-a-wordpress-template-or-theme/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/aneko.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://urbangiraffe.com/2005/04/12/themeguide1/"><strong>Dissection of a WordPress Theme</strong></a></h4>
<p>An older tutorial, but still relevant, this is an in-depth series from Urban Giraffe (See parts <a href="http://urbangiraffe.com/2005/04/12/themeguide1/">1</a>, <a href="http://urbangiraffe.com/2005/04/22/themeguide2/">2</a>, <a href="http://urbangiraffe.com/2005/04/30/themeguide3/">3</a>, and <a href="http://urbangiraffe.com/2005/05/20/themeguide4/">4</a>) that will take you through the entire process of developing a WordPress theme, with plenty of explanation to go along with the code samples.</p>
<p><a href="http://urbangiraffe.com/2005/04/12/themeguide1/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/urbang.jpg" alt="" width="425" height="250" /></a></p>
<h4><a href="http://www.dezinerfolio.com/2007/11/27/developing-a-wordpress-theme/"><strong>Developing a WordPress Theme</strong></a></h4>
<p>Deziner Folio did a tutorial that covers the basics of the header, sidebar, footer and index files. This one is not as in-depth as some of the others on this list, but it is a good place to get a quicker understanding of theme development.</p>
<p><a href="http://www.dezinerfolio.com/2007/11/27/developing-a-wordpress-theme/"><img class="imgborder" src="http://img.designm.ag.s3.amazonaws.com/dfoliotheme.jpg" alt="" width="425" height="250" /></a></p>
<h4>One Final Resource</h4>
<p>In addition to the ten tutorials listed above, the <a href="http://codex.wordpress.org/">WordPress Codex</a> is also a great resource with loads of information. The section for <a href="http://codex.wordpress.org/Theme_Development">theme development</a> is a great resource, especially if your new to WP theme development.</p>
<p>For more posts on WordPress, see:</p>
<ul>
<li><a href="http://vandelaydesign.com/blog/wordpress/category-hacks/">Category Hacks for WordPress Theme Designers</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/design-inspiration/">Enhanced Sidebars with Dynamic Content</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/design-inspiration/">10 Excellent Sources for WordPress Design Inspiration</a></li>
<li><a href="http://vandelaydesign.com/blog/wordpress/specialty-themes/">20 Specialty WordPress Themes</a></li>
</ul>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Ftutorials-for-developing-wordpress-themes%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Ftutorials-for-developing-wordpress-themes%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/tutorials-for-developing-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>78</slash:comments>
		</item>
		<item>
		<title>Category Hacks for WordPress Theme Designers</title>
		<link>http://vandelaydesign.com/blog/wordpress/category-hacks/</link>
		<comments>http://vandelaydesign.com/blog/wordpress/category-hacks/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 02:51:00 +0000</pubDate>
		<dc:creator>Vandelay Website Design</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme development]]></category>

		<guid isPermaLink="false">http://vandelaydesign.com/blog/?p=357</guid>
		<description><![CDATA[One of the fundamental building blocks of the WordPress blog structure is the category. Of course the category serves as a way to organize the content and help visitors with navigation, but it also provides theme developers with opportunities to do some different things to make the theme a bit more distinct or more effective.

In this post we'll take a look at a number of things you can do with WordPress coding that involve categories in one way or another. Hopefully this will be a helpful guide that you can refer to whenever you're developing a new theme. ]]></description>
			<content:encoded><![CDATA[<p>One of the fundamental building blocks of the WordPress blog structure is the  category. Of course the category serves as a way to organize the content and  help visitors with navigation, but it also provides theme developers with  opportunities to do some different things to make the theme a bit more distinct  or more effective.</p>
<p>In this post we&#8217;ll take a look at a number of things you can do with  WordPress coding that involve categories in one way or another. Hopefully this  will be a helpful guide that you can refer to whenever you&#8217;re developing a new  theme.</p>
<h3>Exclude Specific Categories from Your Category List:</h3>
<p>Most blogs include a list of categories in the sidebar to help visitors find  the content that they want. However, there may be times when you want to exclude  certain categories from the list. Fortunately it&#8217;s a very simple change.</p>
<p>This is the code to display all categories.</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php wp_list_cats(); ?&amp;gt;</div></div>
<p>This is the code to exclude categories number 4 and 5 (you can get the  category numbers in from the WP dashboard).</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php wp_list_cats('exclude=4, 5'); ?&amp;gt;</div></div>
<h3><strong>Remove a Category from the RSS Feed:</strong></h3>
<p>You may also want to exclude posts in a specific category from being included  in your RSS feed. Sideblogs are increasingly popular and usually you&#8217;ll want to  exclude these posts from the main feed. Again, excluding categories is pretty  easy. You could always use a plugin like Advanced Category Excluder (<a href="http://wordpress.org/extend/plugins/advanced-category-excluder/">http://wordpress.org/extend/plugins/advanced-category-excluder/</a>),  or you could make the changes manually.</p>
<p>To exclude a category, use this URL for your feed:</p>
<p><a href="http://example.com/feed?cat=-4">http://example.com/feed?cat=-4</a></p>
<p>That would exclude category number 4. To exclude multiple categories, use a  URL like this:</p>
<p><a href="http://example.com/feed?cat=-3&amp;cat=-4&amp;cat=-5">http://example.com/feed?cat=-3&amp;cat=-4&amp;cat=-5</a></p>
<h3>Exclude Posts in a Category from Appearing on the  Homepage:</h3>
<p>There may be situations where you want to exclude posts from the front page  based on their category. Often this will be in the same situations where you  also want to exclude it from the feed.</p>
<p>To exclude a category from the loop on the front page, find this code:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&amp;gt;</div></div>
<p>and change it to this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php query_posts('cat=-4'); ?&amp;gt;<br />
&amp;lt;?php if ( have_posts() ) : while &nbsp;( have_posts() ) : the_post(); ?&amp;gt;</div></div>
<p>This will exclude posts in category number four from being displayed on the  front page.</p>
<h3>Show Links to the Most Recent Posts from a Specific Category in the  Sidebar:</h3>
<p>Many blogs use simple WordPress coding to show links to the most recent 5 or  10 posts in the  sidebar. You can adapt this to include or exclude specific  categories.</p>
<p>To show the 10 most recent posts in category number 4, use this code:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?phpquery_posts('cat=4&amp;amp;showposts=10'); ?&amp;gt;<br />
&amp;lt;ul&amp;gt;<br />
&amp;lt;?php while (have_posts()) : the_post(); ?&amp;gt;<br />
&amp;lt;li&amp;gt;&amp;lt;a &nbsp;href=&quot;&amp;lt;?php the_permalink() ?&amp;gt;&quot;&amp;gt;&amp;lt;?php the_title(); &nbsp;?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;<br />
&amp;lt;?php endwhile;?&amp;gt;<br />
&amp;lt;/ul&amp;gt;</div></div>
<p>To exclude category number for, simply put a minus sign (-) in front of the  category number, like this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?phpquery_posts('cat=-4&amp;amp;showposts=10'); ?&amp;gt;<br />
&amp;lt;ul&amp;gt;<br />
&amp;lt;?php while (have_posts()) : the_post(); ?&amp;gt;<br />
&amp;lt;li&amp;gt;&amp;lt;a &nbsp;href=&quot;&amp;lt;?php the_permalink() ?&amp;gt;&quot;&amp;gt;&amp;lt;?php the_title(); &nbsp;?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;<br />
&amp;lt;?php endwhile;?&amp;gt;<br />
&amp;lt;/ul&amp;gt;</div></div>
<p>The code above will show the 10 most recent posts from all categories except  number four. To exclude multiple categories simply add a comma, like this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?phpquery_posts('cat=-4,-5&amp;amp;showposts=10'); ?&amp;gt;<br />
&amp;lt;ul&amp;gt;<br />
&amp;lt;?php while (have_posts()) : the_post(); ?&amp;gt;<br />
&amp;lt;li&amp;gt;&amp;lt;a &nbsp;href=&quot;&amp;lt;?php the_permalink() ?&amp;gt;&quot;&amp;gt;&amp;lt;?php the_title(); &nbsp;?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;<br />
&amp;lt;?php endwhile;?&amp;gt;</div></div>
<p>&lt;/ul&gt;</p>
<h3>Set Up a Separate Feed for a Category:</h3>
<p>If you exclude a category from your main feed you may also want to offer a  separate feed for the one excluded category (again, this is common for  sideblogs). WordPress will easily give you the feed for any one category by  using a URL like this one:</p>
<p><a href="http://example.com/category/nameofyourcategory/feed/">http://example.com/category/nameofyourcategory/feed/</a></p>
<p>If you want, you can take that URL and run it through FeedBurner and treat it  like any other feed.</p>
<h3>Show Post Excerpts on Category Pages:</h3>
<p>To avoid duplicate content and to reduce the length or category pages, many  bloggers choose to show excerpts instead of full posts. It&#8217;s a simple change.  Find this code:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php the_content() ?&amp;gt;</div></div>
<p>And change it to this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php the_excerpt() ?&amp;gt;</div></div>
<h3>Show Only Post Titles on Category Pages:</h3>
<p>Another option is to only show post titles. You can do that by using this  code:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:425px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&amp;lt;?php the_title() ?&amp;gt;</div></div>
<p>Most likely your theme already has this code surrounded by a link to the  permalink of the post. So what you will want to do is just delete the code that  calls the excerpt or the content and leave the title and link intact.</p>
<p>Hopefully this post gave you some ideas that you can implement in your own  themes.</p>
<p><em>If you like getting design inspiration by looking at excellent blog designs, you&#8217;ll love our new gallery site <a href="http://blogdesignheroes.com/">Blog Design Heroes</a>.</em></p>
<p><strong>Looking to Hire a Designer or Developer?</strong></p>
<p>Post a free job listing to the DesignM.ag job board for freelance, part-time or full-time positions. Your listing will be seen by thousands of talented designers and developers. - <a href="http://designm.ag/jobs/?action=postjob">Post a job for free</a>.</p><div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcategory-hacks%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvandelaydesign.com%2Fblog%2Fwordpress%2Fcategory-hacks%2F" height="61" width="51" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://vandelaydesign.com/blog/wordpress/category-hacks/feed/</wfw:commentRss>
		<slash:comments>95</slash:comments>
		</item>
	</channel>
</rss>
