<?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>Roy Tanck's weblog &#187; WordPress themes</title>
	<atom:link href="http://www.roytanck.com/category/internet/wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.roytanck.com</link>
	<description>Fascinated by new technology</description>
	<lastBuildDate>Sun, 28 Feb 2010 15:41:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to show each post&#8217;s date in WordPress</title>
		<link>http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/</link>
		<comments>http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 14:45:50 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[template tags]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[the_date]]></category>
		<category><![CDATA[the_time]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/?p=2430</guid>
		<description><![CDATA[
			
				
			
		
The templating system in WordPress is very flexible, and there&#8217;s rarely something you can&#8217;t do or that doesn&#8217;t work as you&#8217;d expect. A notable exception however is the_date. Its purpose is simple enough. It displays the current post&#8217;s date of creation. But on pages with more than one post (such as on many blog home [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2009/03/25/template-tag-shortcodes-plugin-adds-lots-of-flexbility-to-wordpress/' rel='bookmark' title='Permanent Link: Template Tag Shortcodes plugin adds lots of flexbility to Wordpress'>Template Tag Shortcodes plugin adds lots of flexbility to Wordpress</a> <small> Justin Tadlock just released a brilliant WordPress plugin that...</small></li>
<li><a href='http://www.roytanck.com/2009/01/14/which-wordpress-plugin-should-i-donate-to/' rel='bookmark' title='Permanent Link: Which WordPress plugins should I donate to?'>Which WordPress plugins should I donate to?</a> <small> With the recent success of this blog, I&#8217;ve been...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2009%2F12%2F17%2Fhow-to-show-each-posts-date-in-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2009%2F12%2F17%2Fhow-to-show-each-posts-date-in-wordpress%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.roytanck.com/wp-content/uploads/2009/12/clock-150x150.jpg" alt="clock" title="clock" width="150" height="150" class="alignleft size-thumbnail wp-image-2432" />The templating system in WordPress is very flexible, and there&#8217;s rarely something you can&#8217;t do or that doesn&#8217;t work as you&#8217;d expect. A notable exception however is <a href="http://codex.wordpress.org/Template_Tags/the_date"><code>the_date</code></a>. Its purpose is simple enough. It displays the current post&#8217;s date of creation. But on pages with more than one post (such as on many blog home pages), something weird happens. If a number of posts on any given page were created on the same date, <code>the_date</code> will only show that date for the first of those posts.</p>
<p>In the early days of blogging, posts were usually listed by date, much like a regular, paper diary. In the old default theme that comes with WordPress a big date title is used to separate posts into days. That&#8217;s what <code>the_date</code> was created to do, and so it makes sense it only displays the same date once. In most modern themes however, people like the date to be among the meta data for each article, so <code>the_date</code> falls short.<br />
<span id="more-2430"></span></p>
<h2>the_time</h2>
<p>In comes <code>the_time</code>. This template tag, as the name suggests, shows the time at which a post was created. However, it accepts a <a href="http://codex.wordpress.org/Formatting_Date_and_Time">PHP time format string</a> as an argument, and can be made to display the date. You could simply put a date formatting string in there and be done with it, but I like to keep things flexible, so i wanted to use the date format string set in WordPress&#8217; settings. That way the user controls the output, and it can be adjusted to international preferences.</p>
<p>When I first ran into this I posted my issue on the WordPress forums, and <a href="http://ottodestruct.com/blog/">Otto42</a> came up with a prefect solution. I&#8217;ve been using it ever since and thought I&#8217;d share it here.</p>
<p><code>the_time(get_option('date_format'));</code></p>
<p>What this does is get the user-set date format from WordPress and feed it to the_time. Since that function doesn&#8217;t have a &#8216;once a day&#8217; limitation, you can use this as often as you like in your theme.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2009/03/25/template-tag-shortcodes-plugin-adds-lots-of-flexbility-to-wordpress/' rel='bookmark' title='Permanent Link: Template Tag Shortcodes plugin adds lots of flexbility to Wordpress'>Template Tag Shortcodes plugin adds lots of flexbility to Wordpress</a> <small> Justin Tadlock just released a brilliant WordPress plugin that...</small></li>
<li><a href='http://www.roytanck.com/2009/01/14/which-wordpress-plugin-should-i-donate-to/' rel='bookmark' title='Permanent Link: Which WordPress plugins should I donate to?'>Which WordPress plugins should I donate to?</a> <small> With the recent success of this blog, I&#8217;ve been...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Obfuscate email addresses using PHP</title>
		<link>http://www.roytanck.com/2009/02/18/obfuscate-email-addresses-using-php/</link>
		<comments>http://www.roytanck.com/2009/02/18/obfuscate-email-addresses-using-php/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 12:35:43 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[obfuscate]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/?p=1257</guid>
		<description><![CDATA[
			
				
			
		
If you want to include an email link in a WordPress template, or any other web page for that matter, its advisable to &#8216;obfuscate&#8217; the address. Unfortunately, spammers scour the web to harvest email addresses, so if you simply place your address online, you&#8217;re very likely to get a some extra unwanted email. That&#8217;s where [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2008/09/06/are-you-using-comment-notification-by-email/' rel='bookmark' title='Permanent Link: Are you using comment notification by email?'>Are you using comment notification by email?</a> <small> For as long as I remember, WordPress has had...</small></li>
<li><a href='http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/' rel='bookmark' title='Permanent Link: How to show each post&#8217;s date in WordPress'>How to show each post&#8217;s date in WordPress</a> <small> The templating system in WordPress is very flexible, and...</small></li>
<li><a href='http://www.roytanck.com/2009/03/17/the-top-5-wp-cumulus-hacks/' rel='bookmark' title='Permanent Link: The top 5 WP-Cumulus hacks'>The top 5 WP-Cumulus hacks</a> <small> Every once in a while a user asks me...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2009%2F02%2F18%2Fobfuscate-email-addresses-using-php%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2009%2F02%2F18%2Fobfuscate-email-addresses-using-php%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If you want to include an email link in a WordPress template, or any other web page for that matter, its advisable to &#8216;obfuscate&#8217; the address. Unfortunately, spammers scour the web to harvest email addresses, so if you simply place your address online, you&#8217;re very likely to get a some extra unwanted email. That&#8217;s where obfuscation comes in.<br />
<span id="more-1257"></span><br />
If the address is fixed (the page is custom-made for one site) you can use a service like <a href="http://www.albionresearch.com/misc/obfuscator.php">this</a> to obfuscate that one address. In WordPress, it makes more sense to get the user or admin&#8217;s email from the system instead, and handle the obfuscation in the theme&#8217;s PHP file. I&#8217;ve been using a solution originally devised by <a href="http://pthree.org/2005/11/19/email-obfuscation-php-style/">Aaron Toponce</a>, but with a few modifications.</p>
<p><code style="display: block; border: 1px solid #e8e7e5; padding: 8px 10px; margin: 20px; background-color: #ededed;">&lt;?php<br />
&nbsp;&nbsp;&nbsp;&nbsp; $link = 'mailto:' . get_bloginfo("admin_email");<br />
&nbsp;&nbsp;&nbsp;&nbsp; $obfuscatedLink = "";<br />
&nbsp;&nbsp;&nbsp;&nbsp; for ($i=0; $i&lt;strlen($link); $i++){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $obfuscatedLink .= "&#" . ord($link[$i]) . ";";<br />
&nbsp;&nbsp;&nbsp;&nbsp; }<br />
?&gt;<br />
&lt;a href="&lt;?php echo $obfuscatedLink; ?&gt;"&gt;email&lt;/a&gt;<br />
</code></p>
<p>What this example does is take the WordPress admin email address, create a mailto link and then loop though the characters, replacing each with its ASCII equivalent. Your users won&#8217;t notice a thing, but when you look at the code you&#8217;ll see that the link is made up of ASCII codes. That&#8217;s you first line of defense against spammers.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2008/09/06/are-you-using-comment-notification-by-email/' rel='bookmark' title='Permanent Link: Are you using comment notification by email?'>Are you using comment notification by email?</a> <small> For as long as I remember, WordPress has had...</small></li>
<li><a href='http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/' rel='bookmark' title='Permanent Link: How to show each post&#8217;s date in WordPress'>How to show each post&#8217;s date in WordPress</a> <small> The templating system in WordPress is very flexible, and...</small></li>
<li><a href='http://www.roytanck.com/2009/03/17/the-top-5-wp-cumulus-hacks/' rel='bookmark' title='Permanent Link: The top 5 WP-Cumulus hacks'>The top 5 WP-Cumulus hacks</a> <small> Every once in a while a user asks me...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2009/02/18/obfuscate-email-addresses-using-php/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Like the new look?</title>
		<link>http://www.roytanck.com/2008/12/18/like-the-new-look/</link>
		<comments>http://www.roytanck.com/2008/12/18/like-the-new-look/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 08:08:25 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[paper trail]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/?p=817</guid>
		<description><![CDATA[
			
				
			
		
I&#8217;ve been meaning to redesign this blog for a while now. Most of all I wanted a better sidebar setup which would accommodate more links and wider ads widgets. In fact, the old Papertrail theme I was using has only a very rudimentary widget support, and with the recent success of this blog I needed [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F12%2F18%2Flike-the-new-look%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F12%2F18%2Flike-the-new-look%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been meaning to redesign this blog for a while now. Most of all I wanted a better sidebar setup which would accommodate more links and wider <del>ads</del> widgets. In fact, the old Papertrail theme I was using has only a very rudimentary widget support, and with the recent success of this blog I needed more flexibility.</p>
<p>Although still a work in progress, I quite like the results so far. It&#8217;s cleaner, it uses less Flash(*) and it loads extremely fast. The design still needs work and I definitely need a better tagline (wanna help me out with that one?).<br />
<span id="more-817"></span><br />
* = I&#8217;ve come to believe that using Flash to create fancy titles simply isn&#8217;t worth the trouble. For one thing, most mobile phone browsers don&#8217;t support Flash, and the old theme looked terrible on those as a result. Flash is great for lots of things, but having 10+ movies on one page just to have specific font is like shooting a mosquito with a cannon (as we say here in the Netherlands).</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2008/12/18/like-the-new-look/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>WordPress theme: Paper Trail</title>
		<link>http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/</link>
		<comments>http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 14:44:29 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[paper trail]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/</guid>
		<description><![CDATA[
			
				
			
		

I love it when business and pleasure coincide. I had to look into styling widgets today for an upcoming project, and decided to use my Paper Trail theme as test material. Turns out the markup of widgets gives you surprisingly (frustratingly) little to work with in terms of CSS. Still I managed to get the [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
<li><a href='http://www.roytanck.com/2008/12/18/like-the-new-look/' rel='bookmark' title='Permanent Link: Like the new look?'>Like the new look?</a> <small> I&#8217;ve been meaning to redesign this blog for a...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F03%2F13%2Fwordpress-theme-paper-trail%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F03%2F13%2Fwordpress-theme-paper-trail%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.roytanck.com/wp-content/uploads/2008/03/screenshot.png" alt="Paper Trail WordPress theme screenshot" /></p>
<p>I love it when business and pleasure coincide. I had to look into styling widgets today for an upcoming project, and decided to use my Paper Trail theme as test material. Turns out the markup of widgets gives you surprisingly (frustratingly) little to work with in terms of CSS. Still I managed to get the widgets to look like I wanted them to, thus completing the theme.</p>
<p>Paper Trail is a two column layout with fancy Flash post and blog titles.</p>
<ul>
<li>It requires Flash and Javascript (although it doesn&#8217;t break completely if these are missing). If your blog targets mobile users (for instance), this is not the theme for you.</li>
<li>This is my first theme where I&#8217;ve paid any real attention to widget styling. Third party widgets may not look as intended. Chances are they will.</li>
<li>Thanks to <a href="http://blog.deconcept.com/swfobject/">Geoff Stearns</a>, the use of flash will not affect search engine ranking.</li>
<li>The Flash titles contain complex algorithms that change things like line breaks and font size in order to best accommodate your post&#8217;s titles. Let me know if they act up. Using very long words in titles might render them unreadable.</li>
<li>I&#8217;ll not be releasing the source code for the Flash movies. Mostly because I&#8217;m afraid you&#8217;ll laugh at me for my poor coding skills, but also because I fear you&#8217;ll ask me to explain how they work.</li>
<li>Paper Trail was built for <strong>WordPress version 2.3</strong>, and will spend most if it&#8217;s time looking for missing things like tags on older versions (and not actually work).</li>
<li>Because of limitations in the way Flash handles dynamic text the theme supports basic Latin characters only. Sorry about that.</li>
</ul>
<p>If you want to give it a try, you can download it <a href="http://www.roytanck.com/wp-content/uploads/papertrail.zip">here</a>.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
<li><a href='http://www.roytanck.com/2008/12/18/like-the-new-look/' rel='bookmark' title='Permanent Link: Like the new look?'>Like the new look?</a> <small> I&#8217;ve been meaning to redesign this blog for a...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/feed/</wfw:commentRss>
		<slash:comments>62</slash:comments>
		</item>
		<item>
		<title>Test driving a new theme&#8230;</title>
		<link>http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/</link>
		<comments>http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 10:55:13 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/</guid>
		<description><![CDATA[
			
				
			
		
As of now, &#8216;m testing a new WordPress theme on this site. I haven&#8217;t decided on a title yet, and there&#8217;s tons of little stuff missing, but I&#8217;m pretty sure I&#8217;ll be releasing this one sometime this or next month. The most important thing to sort out  is decent widget support. This was sorely [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2008/12/18/like-the-new-look/' rel='bookmark' title='Permanent Link: Like the new look?'>Like the new look?</a> <small> I&#8217;ve been meaning to redesign this blog for a...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F02%2F16%2Ftest-driving-a-new-theme%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2008%2F02%2F16%2Ftest-driving-a-new-theme%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>As of now, &#8216;m testing a new WordPress theme on this site. I haven&#8217;t decided on a title yet, and there&#8217;s tons of little stuff missing, but I&#8217;m pretty sure I&#8217;ll be releasing this one sometime this or next month. The most important thing to sort out  is decent widget support. This was sorely lacking from some of my earlier themes, and instead of updating them I decided to dedicate the time to designing a new one altogether.</p>
<p>I wanted to use a white background to increase readability, and I&#8217;m using Flash movies to do some typography tricks that plain HTML doesn&#8217;t know yet. Other than that it&#8217;s a relatively simple theme that will be easy to modify by anyone who isn&#8217;t completely allergic to style sheets or HTML.</p>
<p>So, what do you think?</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
<li><a href='http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/' rel='bookmark' title='Permanent Link: Brilliant new WordPress theme'>Brilliant new WordPress theme</a> <small> I stumbled across a site using a slightly modified...</small></li>
<li><a href='http://www.roytanck.com/2008/12/18/like-the-new-look/' rel='bookmark' title='Permanent Link: Like the new look?'>Like the new look?</a> <small> I&#8217;ve been meaning to redesign this blog for a...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>My themes and WordPress 2.3</title>
		<link>http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/</link>
		<comments>http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 12:47:37 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[Crete]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/</guid>
		<description><![CDATA[
			
				
			
		
I&#8217;ve been getting a lot of email asking me whether I&#8217;m going to be updating my themes to work with the new WordPress version that was released a couple of weeks ago. The short answer is &#8216;yes&#8217;, but there&#8217;s a &#8216;but&#8217;. I&#8217;m writing this from a spyware-ridden PC in an internet cafe in Bali, Crete, [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2007/02/12/83-beautiful-wordpress-themes/' rel='bookmark' title='Permanent Link: 83 beautiful WordPress themes'>83 beautiful WordPress themes</a> <small> When I occasionally browse themes.wordpress.net it strikes me not...</small></li>
<li><a href='http://www.roytanck.com/2007/09/10/modified-themes/' rel='bookmark' title='Permanent Link: Modified themes'>Modified themes</a> <small> One of the things I like about releasing WordPress...</small></li>
<li><a href='http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/' rel='bookmark' title='Permanent Link: How to show each post&#8217;s date in WordPress'>How to show each post&#8217;s date in WordPress</a> <small> The templating system in WordPress is very flexible, and...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F10%2F09%2Fmy-themes-and-wordpress-23%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F10%2F09%2Fmy-themes-and-wordpress-23%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve been getting a lot of email asking me whether I&#8217;m going to be updating my themes to work with the new WordPress version that was released a couple of weeks ago. The short answer is &#8216;yes&#8217;, but there&#8217;s a &#8216;but&#8217;. I&#8217;m writing this from a spyware-ridden PC in an internet cafe in Bali, Crete, where I&#8217;m on vacation with my family. I&#8217;ll be back home next week and I hope to find the time to work on a new version for my themes. I&#8217;ll post the new versions here of course. Please hang in there a little longer&#8230; </p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2007/02/12/83-beautiful-wordpress-themes/' rel='bookmark' title='Permanent Link: 83 beautiful WordPress themes'>83 beautiful WordPress themes</a> <small> When I occasionally browse themes.wordpress.net it strikes me not...</small></li>
<li><a href='http://www.roytanck.com/2007/09/10/modified-themes/' rel='bookmark' title='Permanent Link: Modified themes'>Modified themes</a> <small> One of the things I like about releasing WordPress...</small></li>
<li><a href='http://www.roytanck.com/2009/12/17/how-to-show-each-posts-date-in-wordpress/' rel='bookmark' title='Permanent Link: How to show each post&#8217;s date in WordPress'>How to show each post&#8217;s date in WordPress</a> <small> The templating system in WordPress is very flexible, and...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Modified themes</title>
		<link>http://www.roytanck.com/2007/09/10/modified-themes/</link>
		<comments>http://www.roytanck.com/2007/09/10/modified-themes/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 13:06:52 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[modifications]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2007/09/10/modified-themes/</guid>
		<description><![CDATA[
			
				
			
		

One of the things I like about releasing WordPress themes is seeing what people do with them. Some just take out the credit link, other change so much I barely recognize my original work. And that&#8217;s a good thing. I try and make my themes easy to modify and do not attach any kind of [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/' rel='bookmark' title='Permanent Link: My themes and WordPress 2.3'>My themes and WordPress 2.3</a> <small> I&#8217;ve been getting a lot of email asking me...</small></li>
<li><a href='http://www.roytanck.com/2007/02/12/83-beautiful-wordpress-themes/' rel='bookmark' title='Permanent Link: 83 beautiful WordPress themes'>83 beautiful WordPress themes</a> <small> When I occasionally browse themes.wordpress.net it strikes me not...</small></li>
<li><a href='http://www.roytanck.com/2007/01/26/widgets/' rel='bookmark' title='Permanent Link: Widgets!'>Widgets!</a> <small> A while ago, Automattic introduced sidebar widgets, a plugin...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F09%2F10%2Fmodified-themes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F09%2F10%2Fmodified-themes%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src='http://www.roytanck.com/wp-content/uploads/2007/09/nikkocity.jpg' alt='Nikkocity’s modified Positive Feeling theme' /></p>
<p>One of the things I like about releasing WordPress themes is seeing what people do with them. Some just take out the credit link, other change so much I barely recognize my original work. And that&#8217;s a good thing. I try and make my themes easy to modify and do not attach any kind of license (which I know to be stupid, but I haven&#8217;t had the time to read up on things like Creative Commons).</p>
<p>Anyway, I liked <a href="http://www.nikkocity.com/">Nikko City&#8217;s</a> version (image above) of my <a href="http://www.roytanck.com/2006/07/27/positive-feeling-released/">Positive Feeling theme</a> so much I thought I&#8217;d share it. They didn&#8217;t even change all that much, but seeing my layout used to sell Japanese cooking equipment made my day.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/' rel='bookmark' title='Permanent Link: My themes and WordPress 2.3'>My themes and WordPress 2.3</a> <small> I&#8217;ve been getting a lot of email asking me...</small></li>
<li><a href='http://www.roytanck.com/2007/02/12/83-beautiful-wordpress-themes/' rel='bookmark' title='Permanent Link: 83 beautiful WordPress themes'>83 beautiful WordPress themes</a> <small> When I occasionally browse themes.wordpress.net it strikes me not...</small></li>
<li><a href='http://www.roytanck.com/2007/01/26/widgets/' rel='bookmark' title='Permanent Link: Widgets!'>Widgets!</a> <small> A while ago, Automattic introduced sidebar widgets, a plugin...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2007/09/10/modified-themes/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>bestwpthemes.com</title>
		<link>http://www.roytanck.com/2007/07/24/bestwpthemescom/</link>
		<comments>http://www.roytanck.com/2007/07/24/bestwpthemescom/#comments</comments>
		<pubDate>Tue, 24 Jul 2007 18:59:39 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[bestwpthemes]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2007/07/24/bestwpthemescom/</guid>
		<description><![CDATA[
			
				
			
		
Matt of bestwpthemes.com contacted me a couple of days ago to let me know he added my Tranquility themes to his list of best WP themes. It&#8217;s always nice when someone adds your work to any kind of shortlist. Thanks Matt.


Related posts:Widgets!  A while ago, Automattic introduced sidebar widgets, a plugin...
Flower.swf fla file  [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2007/01/26/widgets/' rel='bookmark' title='Permanent Link: Widgets!'>Widgets!</a> <small> A while ago, Automattic introduced sidebar widgets, a plugin...</small></li>
<li><a href='http://www.roytanck.com/2007/03/04/flowerswf-fla-file/' rel='bookmark' title='Permanent Link: Flower.swf fla file'>Flower.swf fla file</a> <small> Ever since I released my Tranquility and Tranquility White...</small></li>
<li><a href='http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/' rel='bookmark' title='Permanent Link: My themes and WordPress 2.3'>My themes and WordPress 2.3</a> <small> I&#8217;ve been getting a lot of email asking me...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F07%2F24%2Fbestwpthemescom%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F07%2F24%2Fbestwpthemescom%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Matt of <a href="http://www.bestwpthemes.com" rel="nofollow">bestwpthemes.com</a> contacted me a couple of days ago to let me know he added my Tranquility themes to his list of best WP themes. It&#8217;s always nice when someone adds your work to any kind of shortlist. Thanks Matt.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2007/01/26/widgets/' rel='bookmark' title='Permanent Link: Widgets!'>Widgets!</a> <small> A while ago, Automattic introduced sidebar widgets, a plugin...</small></li>
<li><a href='http://www.roytanck.com/2007/03/04/flowerswf-fla-file/' rel='bookmark' title='Permanent Link: Flower.swf fla file'>Flower.swf fla file</a> <small> Ever since I released my Tranquility and Tranquility White...</small></li>
<li><a href='http://www.roytanck.com/2007/10/09/my-themes-and-wordpress-23/' rel='bookmark' title='Permanent Link: My themes and WordPress 2.3'>My themes and WordPress 2.3</a> <small> I&#8217;ve been getting a lot of email asking me...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2007/07/24/bestwpthemescom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Brilliant new WordPress theme</title>
		<link>http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/</link>
		<comments>http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 08:55:48 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[Brian Gardner]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[dropshadow]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/</guid>
		<description><![CDATA[
			
				
			
		

I stumbled across a site using a slightly modified version of Brian Gardner&#8217;s Dropshadow theme today and when I looked up the original I found it to be even better. It&#8217;s impossible to track all new theme releases nowadays, but of the ones I know I think its the best theme currently available for WordPress. [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
<li><a href='http://www.roytanck.com/2006/07/27/positive-feeling-released/' rel='bookmark' title='Permanent Link: WordPress theme: Positive Feeling'>WordPress theme: Positive Feeling</a> <small> Every once in a while I feel a sudden...</small></li>
<li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F06%2F24%2Fbrilliant-new-wordpress-theme%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F06%2F24%2Fbrilliant-new-wordpress-theme%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src='http://www.roytanck.com/wp-content/uploads/2007/06/dropshadow.jpg' alt='Bran Gardner’s Dropshdow theme' /></p>
<p>I stumbled across a site using a slightly modified version of <a href="http://www.briangardner.com/themes/dropshadow-wordpress-theme.htm">Brian Gardner&#8217;s Dropshadow theme</a> today and when I looked up the original I found it to be even better. It&#8217;s impossible to track all new theme releases nowadays, but of the ones I know I think its the best theme currently available for WordPress. Kudos to Brian. Great job!</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2008/02/16/test-driving-a-new-theme/' rel='bookmark' title='Permanent Link: Test driving a new theme&#8230;'>Test driving a new theme&#8230;</a> <small> As of now, &#8216;m testing a new WordPress theme...</small></li>
<li><a href='http://www.roytanck.com/2006/07/27/positive-feeling-released/' rel='bookmark' title='Permanent Link: WordPress theme: Positive Feeling'>WordPress theme: Positive Feeling</a> <small> Every once in a while I feel a sudden...</small></li>
<li><a href='http://www.roytanck.com/2008/03/13/wordpress-theme-paper-trail/' rel='bookmark' title='Permanent Link: WordPress theme: Paper Trail'>WordPress theme: Paper Trail</a> <small> I love it when business and pleasure coincide. I...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2007/06/24/brilliant-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tranquility White for Textpattern</title>
		<link>http://www.roytanck.com/2007/03/15/tranquility-white-for-textpattern/</link>
		<comments>http://www.roytanck.com/2007/03/15/tranquility-white-for-textpattern/#comments</comments>
		<pubDate>Thu, 15 Mar 2007 19:15:31 +0000</pubDate>
		<dc:creator>Roy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress themes]]></category>

		<guid isPermaLink="false">http://www.roytanck.com/2007/03/15/tranquility-white-for-textpattern/</guid>
		<description><![CDATA[
			
				
			
		

I received word just yet that Marcus of txp-templates.com has finished porting my Tranquility White theme to TextPattern. I think it looks smashing!   Great job! Thanks Marcus.


Related posts:WordPress theme: Tranquility White  It made sense. Most people like pages with white...
WordPress theme: Tranquility  After about two nights of coding, I just released...
Flower.swf [...]


Related posts:<ol><li><a href='http://www.roytanck.com/2006/11/01/wordpress-theme-tranquility-white/' rel='bookmark' title='Permanent Link: WordPress theme: Tranquility White'>WordPress theme: Tranquility White</a> <small> It made sense. Most people like pages with white...</small></li>
<li><a href='http://www.roytanck.com/2006/10/27/wordpress-theme-tranquility/' rel='bookmark' title='Permanent Link: WordPress theme: Tranquility'>WordPress theme: Tranquility</a> <small> After about two nights of coding, I just released...</small></li>
<li><a href='http://www.roytanck.com/2007/03/04/flowerswf-fla-file/' rel='bookmark' title='Permanent Link: Flower.swf fla file'>Flower.swf fla file</a> <small> Ever since I released my Tranquility and Tranquility White...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F03%2F15%2Ftranquility-white-for-textpattern%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.roytanck.com%2F2007%2F03%2F15%2Ftranquility-white-for-textpattern%2F&amp;source=roytanck&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src='http://www.roytanck.com/wp-content/uploads/2007/03/tranquility_white_textpattern.jpg' alt='Tranquility White for TextPattern' /></p>
<p>I received word just yet that Marcus of <a href="http://txp-templates.com">txp-templates.com</a> has finished <a href="http://txp-templates.com/template/tranquility-white-for-textpattern">porting my Tranquility White theme to TextPattern</a>. I think it looks smashing! <img src='http://www.roytanck.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Great job! Thanks Marcus.</p>


<p>Related posts:<ol><li><a href='http://www.roytanck.com/2006/11/01/wordpress-theme-tranquility-white/' rel='bookmark' title='Permanent Link: WordPress theme: Tranquility White'>WordPress theme: Tranquility White</a> <small> It made sense. Most people like pages with white...</small></li>
<li><a href='http://www.roytanck.com/2006/10/27/wordpress-theme-tranquility/' rel='bookmark' title='Permanent Link: WordPress theme: Tranquility'>WordPress theme: Tranquility</a> <small> After about two nights of coding, I just released...</small></li>
<li><a href='http://www.roytanck.com/2007/03/04/flowerswf-fla-file/' rel='bookmark' title='Permanent Link: Flower.swf fla file'>Flower.swf fla file</a> <small> Ever since I released my Tranquility and Tranquility White...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.roytanck.com/2007/03/15/tranquility-white-for-textpattern/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
