<?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>Webmaster-Source &#187; template</title>
	<atom:link href="https://www.webmaster-source.com/tag/template/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Tempo: A Tiny JSON Templating Engine</title>
		<link>https://www.webmaster-source.com/2011/04/25/tempo-a-tiny-json-templating-engine/</link>
		<comments>https://www.webmaster-source.com/2011/04/25/tempo-a-tiny-json-templating-engine/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 11:00:52 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3985</guid>
		<description><![CDATA[Tempo is a 4kb JavaScript library that renders JSON into an HTML template. Your script can take something like this&#8230; &#8230;and populate it with JSON data from the Twitter API, which you could load with a couple lines of jQuery. It works with browser as far back as IE6 and doesn&#8217;t require any dependencies. It [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://twigkit.github.com/tempo/">Tempo</a> is a 4kb JavaScript library that renders JSON into an HTML template. Your script can take something like this&#8230;</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;ol id=&quot;tweets&quot;&gt;
 &lt;li data-template&gt;
  &lt;img src=&quot;{{profile_image_url}}&quot; /&gt;
  &lt;h3&gt;{{from_user}}&lt;/h3&gt;
  &lt;p&gt;{{text}}&lt;/p&gt;
 &lt;/li&gt;
&lt;/ol&gt;
</pre>
<p>&#8230;and populate it with JSON data from the Twitter API, which you could load with a couple lines of jQuery. It works with browser as far back as IE6 and doesn&#8217;t require any dependencies.</p>
<p>It seems like a friendlier way to deal with JSON data, and it offers the advantage of any templating system: you can separate the logic and data from the presentation.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/04/25/tempo-a-tiny-json-templating-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Boilerplate</title>
		<link>https://www.webmaster-source.com/2011/01/19/html5-boilerplate/</link>
		<comments>https://www.webmaster-source.com/2011/01/19/html5-boilerplate/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 11:23:03 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3817</guid>
		<description><![CDATA[HTML5 Boilerplate is a default template that you can use as a starting point to build HTML5-ready web designs around. It has a few neat features, like: Full cross-browser compatibility&#8230;even with IE6. It uses some scripts to add support to those uncool browsers. You can use the new HTML5 elements today. Even the video element. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://html5boilerplate.com/">HTML5 Boilerplate</a> is a default template that you can use as a starting point to build HTML5-ready web designs around. It has a few neat features, like:</p>
<ul>
<li>Full cross-browser compatibility&#8230;even with IE6. It uses some scripts to add support to those uncool browsers. You can use the new HTML5 elements today. Even the video element.</li>
<li>@font-face</li>
<li>Server configuration templates (available for Apache, NGINX, and other servers) to add caching and compression.</li>
<li>Mobile optimizations</li>
<li>Print stylesheet</li>
<li>IE6 pngfix is included</li>
<li>Plenty of utility classes like .no-js and .clearfix</li>
</ul>
<p>It&#8217;s definitely worth checking out for future reference. The reset stylesheet is fairly similar to the one I tend to use, and the HTML seems fairly well-optimized, with the scripts loading in the footer and everything.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/01/19/html5-boilerplate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Category Templates + Custom Taxonomies</title>
		<link>https://www.webmaster-source.com/2010/01/25/wordpress-category-templates-custom-taxonomies/</link>
		<comments>https://www.webmaster-source.com/2010/01/25/wordpress-category-templates-custom-taxonomies/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 11:55:55 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[taxonomies]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2938</guid>
		<description><![CDATA[Here&#8217;s a part of WordPress that many people overlook: Category Templates. It&#8217;s actually quite easy to set up your theme so that it adapts to the content being displayed, allowing you to set up &#8220;departments&#8221; or &#8220;sub sites&#8221; that are styled differently. This isn&#8217;t anything new, but I recently had an interesting realization. This concept [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a part of WordPress that many people overlook:<a href="http://codex.wordpress.org/Category_Templates"> Category Templates</a>. It&#8217;s actually quite easy to set up your theme so that it adapts to the content being displayed, allowing you to set up &#8220;departments&#8221; or &#8220;sub sites&#8221; that are styled differently.</p>
<p>This isn&#8217;t anything new, but I recently had an interesting realization. This concept would be a lot more powerful when coupled with <a href="http://yoast.com/wordpress-custom-taxonomies/">Custom Taxonomies</a>, which have been a part of WordPress since version 2.8 or so.<span id="more-2938"></span></p>
<p>Imagine a movie-related blog. You could have a &#8220;Departments&#8221; taxonomy set up to separate posts into reviews, production news, upcoming release announcements, box office info, etc.. You then build your theme to separate these different content types into different parts of the site, each with their own distinct &#8220;look.&#8221; (Sort of like having multiple blogs under one site, if you want to think of it that way.)</p>
<p>Then you can have other taxonomies setup that allow you to tag a post with actor names, movie franchises, directors, etc.. These extra taxonomies could be used to create other sorts of templates. Want to create a landing page for updates about the &#8220;Harry Potter&#8221; franchise? Create a new template with spaces that pull data from the appropriate taxonomies, and style it how you want it.</p>
<p>If you poke around the <a href="http://news.cnet.com/river/">CNET News</a> site, you&#8217;ll get a good idea of what I&#8217;m talking about. All of the &#8220;blogs&#8221; that are all part of the greater site have their own different stylings, and posts have metadata that allows them to be displayed in different spots. WordPress could easily be used to build something like that.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/01/25/wordpress-category-templates-custom-taxonomies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Posts or Excerpts? How About Both?</title>
		<link>https://www.webmaster-source.com/2008/11/24/full-posts-or-excerpts-how-about-both/</link>
		<comments>https://www.webmaster-source.com/2008/11/24/full-posts-or-excerpts-how-about-both/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 10:08:05 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1094</guid>
		<description><![CDATA[Should you display full posts on your WordPress blog&#8217;s index, or excerpts? Normally I fall into the camp that says you shouldn&#8217;t display ten full posts on your main page, since you end up with more duplicate content, and it takes longer to scroll through the posts. How about having the best of both options? [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Should you display full posts on your WordPress blog&#8217;s index, or excerpts? Normally I fall into the camp that says you shouldn&#8217;t display ten full posts on your main page, since you end up with more duplicate content, and it takes longer to scroll through the posts.</p>
<p>How about having the best of both options? Have one full post, and the rest can be excerpts.</p>
<p>To set this up, find the Loop in your theme&#8217;s index.php file. It should look something like this:<span id="more-1094"></span></p>
<p><code>&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;div class="post" id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
&lt;h2&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title_attribute(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;<br />
&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt;&lt;/small&gt;<br />
&lt;div class="entry"&gt;<br />
&lt;?php the_content('Read the rest of this entry »'); ?&gt;<br />
&lt;/div&gt;<br />
&lt;p class="postmetadata"&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?&gt;&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>Replace it with something more like this:</p>
<p><code>&lt;?php $counter=0; while (have_posts()) : the_post(); $counter++; ?&gt;<br />
&lt;div class="post" id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
&lt;?php if ($counter &gt; 1) { echo getThumbnail($post-&gt;ID); } ?&gt;<br />
&lt;h2&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title_attribute(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;<br />
&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt;&lt;/small&gt;<br />
&lt;div class="entry"&gt;<br />
&lt;?php<br />
if ($counter &lt; 2) {<br />
the_content('Read the rest of this entry »');<br />
} else {<br />
the_excerpt('Read the rest of this entry »');<br />
}<br />
?&gt;<br />
&lt;/div&gt;</code></p>
<p>It will display the first post in it&#8217;s entirely, and the remaining posts will be shown as excerpts. Note that you can still use the More Tag to override it and cut-off a particularly long post anyway.</p>
<p>If you don&#8217;t feel like messing with the Loop, you could use Daniel Scocco&#8217;s <a href="http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/">Homepage Excerpts plugin</a>, which essentially does the same thing, while allowing for a bit of configuration, without having to play around with counter variables and conditional statements.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/11/24/full-posts-or-excerpts-how-about-both/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Resources Depot Admin Template</title>
		<link>https://www.webmaster-source.com/2008/05/04/web-resources-depot-admin-template/</link>
		<comments>https://www.webmaster-source.com/2008/05/04/web-resources-depot-admin-template/#comments</comments>
		<pubDate>Sun, 04 May 2008 10:07:11 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=531</guid>
		<description><![CDATA[Web Resources Depot has released a free Admin Template for use in web apps. It&#8217;s a three-column design with a row of tabs, for navigation, along the top. With some modifications, it would work well for a web application, if you were developing one. Personally, I would use the design during development, and swap it [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Web Resources Depot has released a <a href="http://www.webresourcesdepot.com/free-admin-template-for-web-applications/">free Admin Template</a> for use in web apps. It&#8217;s a three-column design with a row of tabs, for navigation, along the top. With some modifications, it would work well for a web application, if you were developing one.</p>
<p>Personally, I would use the design during development, and swap it out with a unique theme when all the coding work is done. But if you&#8217;re trying to put together a web app, and you don&#8217;t have any design know-how, and don&#8217;t want to hire a designer, you could conceivably use this. I&#8217;d just recommend customizing it a bit, so it doesn&#8217;t look like you have the exact same template as someone else.</p>
<p><img src="http://i29.tinypic.com/30didrm.jpg" alt="Admin Template" width="500" height="238" /></p>
<p>You can view a <a href="http://webresourcesdepot.com/wp-content/uploads/file/admin-template/index.html">live demo</a> of the template, and <a href="http://www.webresourcesdepot.com/free-admin-template-for-web-applications/">download it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/05/04/web-resources-depot-admin-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Feature Your Best Posts in Your Sidebar</title>
		<link>https://www.webmaster-source.com/2008/01/25/how-to-feature-your-best-posts-in-your-sidebar/</link>
		<comments>https://www.webmaster-source.com/2008/01/25/how-to-feature-your-best-posts-in-your-sidebar/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 15:31:08 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[featured posts]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2008/01/25/how-to-feature-your-best-posts-in-your-sidebar/</guid>
		<description><![CDATA[Looking for a way to feature some of your better posts? Here&#8217;s a method I&#8217;ve been using for a few months (visible on the index and the screencap to the right). The five most recent posts that I&#8217;ve marked as &#8220;Featured&#8221; will appear in the list, along with a &#8220;view all&#8221; option that takes the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img src="http://i27.tinypic.com/fmnfgz.jpg" alt="" hspace="6" vspace="6" width="208" height="152" align="right" />Looking for a way to feature some of your better posts? Here&#8217;s a method I&#8217;ve been using for a few months (visible on the <a href="http://www.webmaster-source.com">index</a> and the screencap to the right).</p>
<p>The five most recent posts that I&#8217;ve marked as &#8220;Featured&#8221; will appear in the list, along with a &#8220;view all&#8221; option that takes the clicker to a <a href="http://www.webmaster-source.com/featured/">custom date-based archive</a>.</p>
<p>How does it work? It&#8217;s done with <a href="http://codex.wordpress.org/The_Loop">multiple loops</a> and categories.<span id="more-386"></span></p>
<h3>Creating the Sidebar List</h3>
<ol>
<li>Create a new category called &#8220;Featured.&#8221; Note its ID (mine is 72, so I&#8217;ll use that throughout this tutorial).</li>
<li>Add a few posts to the category.</li>
<li>Paste the following code into your sidebar, where you want the list to appear.</li>
</ol>
<p><code><br />
&lt;ul&gt;<br />
&lt;?php<br />
$postslist = get_posts('category=<strong>72</strong>&amp;order=DESC&amp;numberposts=5');<br />
foreach ($postslist as $post) :<br />
setup_postdata($post);<br />
?&gt;&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;&lt;?php<br />
endforeach;<br />
?&gt;<br />
&lt;li&gt;&lt;a href="http://www.webmaster-source.com/featured/"&gt;[View All]&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</code></p>
<p>Be sure to replace the bold &#8220;72&#8221; with the ID of your category. Seeing as this is another loop, the code must be located below your main loop (which means your get_sidebar() command must be below the main loop in your template). If your template&#8217;s sidebar is in the wrong place, you could use the $wpdb-&gt;query() function. However, I will not provide pasteable code, as most themes&#8217; sidebars are below the main loop (and it&#8217;s much better if it is, as your content will be higher up, which is better for search engines).</p>
<h3>Creating a Custom Archive</h3>
<p>Create a new file called featured.php. This will be your template for the archive. Upload it to your theme directory, after adding something like this into it:</p>
<p><code><br />
&lt;?php<br />
/*<br />
Template Name: Featured Posts<br />
*/<br />
?&gt;</code></p>
<p><code><br />
&lt;?php get_header(); ?&gt;<br />
&lt;div id="widecontent"&gt;</code></p>
<p><code>&lt;h2&gt;Featured Posts&lt;/h2&gt;</code></p>
<p><code>&lt;h3&gt;2008&lt;/h3&gt;<br />
&lt;ul&gt;<br />
&lt;?php<br />
query_posts('year=2008&amp;category_name=Featured');<br />
if (have_posts()) :<br />
while (have_posts()) : the_post();<br />
?&gt;&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;&lt;?php<br />
endwhile;<br />
endif;<br />
?&gt;<br />
&lt;/ul&gt;</code></p>
<p><code>&lt;h3&gt;2007&lt;/h3&gt;<br />
&lt;ul&gt;<br />
&lt;?php<br />
query_posts('year=2007&amp;category_name=Featured');<br />
if (have_posts()) :<br />
while (have_posts()) : the_post();<br />
?&gt;&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;&lt;?php<br />
endwhile;<br />
endif;<br />
?&gt;<br />
&lt;/ul&gt;</code></p>
<p><code>&lt;/div&gt;<br />
&lt;?php get_sidebar(); ?&gt;<br />
&lt;?php get_footer(); ?&gt;</code></p>
<p>You&#8217;ll have to modify it a little so it will work with your theme. Note that you have to add a loop for every year you have posts (every new year, you need to put a new one in).</p>
<p>Create a new Page (Admin-&gt;Write-&gt;Page) and call it &#8220;Featured Posts&#8221; (or something of the sort). Set the Post Slug to &#8220;featured&#8221; and the Template to &#8220;Featured Posts.&#8221;</p>
<p>Load <em>yourdomain.com/featured/</em> into your browser to make sure everything works.</p>
<p>Note that this isn&#8217;t the only way to create the archive. You could just use the default, at <em>yourdomain.com/category/featured/</em>, or you could use $wpdb-&gt;query() to create a more advanced archive. It&#8217;s up to you, as well as your experience level. $wpdb-&gt;query() is generally the domain of plugin authors, and the large majority of bloggers should probably steer clear.</p>
<p>Well, enjoy your new Featured Posts system.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/01/25/how-to-feature-your-best-posts-in-your-sidebar/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Clean-Up Your Post Pages, and Ditch the DiggIt Widget!</title>
		<link>https://www.webmaster-source.com/2007/10/11/clean-up-your-post-pages-and-ditch-the-diggit-widget/</link>
		<comments>https://www.webmaster-source.com/2007/10/11/clean-up-your-post-pages-and-ditch-the-diggit-widget/#comments</comments>
		<pubDate>Thu, 11 Oct 2007 17:05:15 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[digg it widget]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[post page]]></category>
		<category><![CDATA[related posts]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[similar posts]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/10/11/clean-up-your-post-pages-and-ditch-the-diggit-widget/</guid>
		<description><![CDATA[Do you have a bunch of useless stuff cluttering your post pages? Are there things there that should not be? Are there things that could be implemented better? Don&#8217;t put it off any longer, it&#8217;s time to clean-up your post pages (the single.php template in WordPress). Social Bookmarking First of all, get rid of that [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img src="http://i20.tinypic.com/2ivqqf.gif" alt="" width="155" height="154" align="right" />Do you have a bunch of useless stuff cluttering your post pages? Are there things there that should not be? Are there things that could be implemented better?</p>
<p>Don&#8217;t put it off any longer, it&#8217;s time to clean-up your post pages (the single.php template in WordPress).</p>
<h3>Social Bookmarking</h3>
<p>First of all, <strong>get rid of that &#8220;DiggIt&#8221; widget</strong>. If someone&#8217;s going to digg your post, then they&#8217;ll find a plain text link sufficient. Also, you save yourself the embarrassment of having &#8220;0 Diggs&#8221; stamped on all of your posts. Get rid of it, and save yourself an HTTP request to Digg&#8217;s servers.</p>
<p>While you&#8217;re removing the DiggIt widget, <strong>kill some of those social bookmarking icons</strong>. Keep them down to <strong>five or less</strong>. You can use the wonderful <a href="http://wordpress.org/extend/plugins/share-this/">Share This</a> plugin to sweep them under a virtual rug, gaining you a cool &#8220;Share By Email&#8221; form as well. If you want, you can keep some of the more commonly used bookmarking links if you want, but Share This can replace the rest.<span id="more-231"></span></p>
<h3>Post Metadata</h3>
<p><em>&#8220;This entry was posted by Bob on Monday, September 24th, 2007 at 10:15 am and is filed under Stuff, Rubbish, Cool. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.&#8221;</em></p>
<p>That&#8217;s kind of a waste of space, isn&#8217;t it? If you&#8217;re creative, you can <strong>shorten that line a bit</strong>, and maybe <strong>apply some styling to it</strong>. You definitely want to <strong>keep the date/time and post author</strong> together, though you could move them up the page, so they&#8217;re under the post title. The trackback URL and comments feed are useful, though they don&#8217;t have to be crammed in with the categories (and tags). This is one of the hardest parts of your template to declutter. You can probably work it out. <a href="http://www.freelanceswitch.com/">Freelance Switch</a> certainly did.</p>
<p><img src="http://i21.tinypic.com/fkbpcm.jpg" alt="" width="500" height="25" /></p>
<p>The postmeta paragraph is styled into a horizontal bar, showing the post date and comments RSS, along with their social bookmarking links and a &#8220;print article&#8221; function. The trackback URL link is moved to the spot where the trackbacks are displayed (separate from the comments), and the author name is moved to a spot under the post title.</p>
<h3>Related Posts</h3>
<p><a href="http://rmarsh.com/2006/10/04/similar-posts/">Similar Posts</a> is a great WordPress plugin that shows links to posts that are related to the one being displayed. If someone lands on a post page from a search engine or social bookmarking site, this plugin may keep them on your site, reading your content. Even for regular users, it can help <strong>unearth old posts that may be still be useful</strong> to someone.</p>
<p>Yes, you want to keep this plugin (or install it if you don&#8217;t have it). However, <strong>don&#8217;t just paste the template tag in and forget about it</strong>. You need to find a place to put the list of posts where it won&#8217;t clutter things too much. ProBlogger, and several other blogs (like Freelance Switch) have found an interesting solution. Look at this image:</p>
<p><img src="http://i22.tinypic.com/w0mb9g.jpg" alt="" width="498" height="137" /></p>
<p>See? The related posts are combined with some other useful links. I&#8217;ve been doing a similar thing here on Webmaster-Source lately, and it has made things look a bit tidier.</p>
<h3>RSS Subscription Links</h3>
<p>After reading a good post, people are likely to subscribe if they&#8217;re presented with an RSS button. Normally you <a href="http://www.webmaster-source.com/2007/08/27/get-more-rss-feed-subscribers/">put your RSS button</a> up <a href="http://www.webmaster-source.com/2007/09/17/the-art-of-the-fold/">above the fold</a>. If someone has just finished reading your post, are they going to scroll up and look for your button? Nope. That&#8217;s why you <strong>add a second subscription link at the end of your post</strong>. It works well, and has affected my subscriber count significantly.</p>
<p>That said, <strong>don&#8217;t just throw an RSS icon down after your post</strong>. Place it carefully so it fits in with some other elements (see previous section, &#8220;Related Posts&#8221;). Make sure it&#8217;s noticeable, and out of the way at the same time. Confused yet? <img src="https://www.webmaster-source.com/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /></p>
<h3>Conclusion</h3>
<p>There are plenty of things you can put on your post pages, but not all of it is useful. Before putting anything in your post template, carefully evaluate whether there&#8217;s a good reason too (the same goes for your sidebar!). Also, be sure to find a good spot to put it, where it won&#8217;t get in the way, but will still serve it&#8217;s purpose.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/10/11/clean-up-your-post-pages-and-ditch-the-diggit-widget/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-04-29 12:35:23 by W3 Total Cache
-->