<?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>TransformationPowerTools &#187; theme</title>
	<atom:link href="http://www.transformationpowertools.com/wordpress/tag/theme/feed" rel="self" type="application/rss+xml" />
	<link>http://www.transformationpowertools.com/wordpress</link>
	<description>for personal growth and transformation</description>
	<lastBuildDate>Fri, 10 Sep 2010 07:16:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Automatically Shorten the Manual Excerpt</title>
		<link>http://www.transformationpowertools.com/wordpress/automatically-shorten-manual-excerpt</link>
		<comments>http://www.transformationpowertools.com/wordpress/automatically-shorten-manual-excerpt#comments</comments>
		<pubDate>Sat, 10 Jul 2010 20:54:55 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA['excerpt_length']]></category>
		<category><![CDATA['excerpt_more']]></category>
		<category><![CDATA[article short form]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[excerpt length]]></category>
		<category><![CDATA[filter hook]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[limit excerpt length]]></category>
		<category><![CDATA[manual excerpt]]></category>
		<category><![CDATA[post excerpt]]></category>
		<category><![CDATA[template file]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=898</guid>
		<description><![CDATA[When you are building or modifying a wordpress theme, you have the choice of either using &#8216;the_content()&#8217; to show the full article, or &#8216;the_excerpt()&#8217; to show a shorter version.
By default, the latter limits the output to the first 55 words of the post, and automatcally strips formatting and images.
To make things more flexible, the editor also allows you to add a manual excerpt that will have preference before the automatically generated one.
There is no default  ... &#187; <small><a href="http://www.transformationpowertools.com/wordpress/automatically-shorten-manual-excerpt">read more</a></small> &#187;]]></description>
			<content:encoded><![CDATA[<p>When you are building or modifying a wordpress theme, you have the choice of either using &#8216;the_content()&#8217; to show the full article, or &#8216;the_excerpt()&#8217; to show a shorter version.<br />
By default, the latter limits the output to the first 55 words of the post, and automatcally strips formatting and images.<br />
To make things more flexible, the editor also allows you to add a manual excerpt that will have preference before the automatically generated one.<br />
There is no default limit to the length of this manual excerpt, which might break some carefully designed templates. </p>
<p>To apply the excerpt length limit to <strong>all excerpts</strong>, a modification of a core wordpress function &#8216;wp_trim_excerpt()&#8217; would be needed.<br />
However, changing core files is not a good idea, as the changes will be lost after each update. </p>
<p>Luckily, the same result can be achieved by using a fillter hook on &#8216;get_the_excerpt&#8217;; the code for it is added to functions.php of the theme.</p>
<p>(updated to utilize the filters &#8216;excert_length&#8217; and &#8216;excerpt_more&#8217; &#8211; aug 2010)</p>
<p><code>function wp_trim_all_excerpt($text) { // Creates an excerpt if needed; and shortens the manual excerpt as well<br />
     global $post;<br />
     if ( &#039;&#039; == $text ) {<br />
          $text = get_the_content(&#039;&#039;);<br />
          $text = apply_filters(&#039;the_content&#039;, $text);<br />
          $text = str_replace(&#039;]]&gt;&#039;, &#039;]]&amp;gt;&#039;, $text);<br />
	 }<br />
          $text = strip_shortcodes( $text ); // optional<br />
	  $text = strip_tags($text);<br />
          $excerpt_length = apply_filters('excerpt_length', 55);<br />
          $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');<br />
          $words = explode(&#039; &#039;, $text, $excerpt_length + 1);<br />
          if (count($words)&gt; $excerpt_length) {<br />
               array_pop($words);<br />
               $text = implode(' ', $words);<br />
               $text = $text . $excerpt_more;<br />
          } else {<br />
               $text = implode(' ', $words);<br />
          }<br />
     return $text;<br />
}<br />
remove_filter('get_the_excerpt', 'wp_trim_excerpt');<br />
add_filter('get_the_excerpt', 'wp_trim_all_excerpt');<br />
<!--formatted--></code></p>
<p>edit: expanded to take remove shortcode from the excerpt; 12/07/2010</p>
<p>thanks to michael.oeser for his well written article: <a href="http://www.michaeloeser.de/wie-man-wordpress-textauszuege-mit-the_excerpt-individuell-anpasst-24700.html">Wie man WordPress Textauszüge mit the_excerpt individuell anpasst</a>. It contains even  more details on how to tweak the excerpt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/automatically-shorten-manual-excerpt/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Troubleshooting wordpress themes</title>
		<link>http://www.transformationpowertools.com/wordpress/troubleshooting-wordpress-themes</link>
		<comments>http://www.transformationpowertools.com/wordpress/troubleshooting-wordpress-themes#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:39:03 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=695</guid>
		<description><![CDATA[here is a little trick if you need to check some variables, or try something new in your wordpress theme while the site is live.
use a conditional if statement to check that you are logged in as the original administrator, and only then do what you need to do. this way you can perform and display the neccesary tests, without the public seing anything.
&#60;?php
if ('1' == $user_ID) :
      echo &#039;you  ... &#187; <small><a href="http://www.transformationpowertools.com/wordpress/troubleshooting-wordpress-themes">read more</a></small> &#187;]]></description>
			<content:encoded><![CDATA[<p>here is a little trick if you need to check some variables, or try something new in your wordpress theme while the site is live.<br />
use a conditional if statement to check that you are logged in as the original administrator, and only then do what you need to do. this way you can perform and display the neccesary tests, without the public seing anything.</p>
<p><code>&lt;?php<br />
if ('1' == $user_ID) :<br />
      echo &#039;you are logged in - this will not be shown to the public: &lt;br/&gt;&lt;br/&gt;&#039;;<br />
&nbsp;  // test routine begin //<br />
echo &#039;cat-id , cat-slug , cat-name , number of posts &lt;br/&gt;&lt;br/&gt;&#039;;<br />
$categories=  get_categories(&#039;&#039;);<br />
  foreach ($categories as $cat) {<br />
  	echo $cat-&gt;cat_ID.&#039; , &#039;.$cat-&gt;category_nicename.&#039; , &#039;.$cat-&gt;cat_name.&#039; , &#039;.$cat-&gt;category_count.&#039;&lt;br/&gt;&#039;;<br />
	  }<br />
&nbsp; // test routine ends //<br />
echo &#039;&lt;br/&gt;end of logged in section &lt;br/&gt;&#039;;<br />
endif; ?&gt;<!--formatted--></code></p>
<p>in this example, i displayed a full list of all categories with id, slug, and name.</p>
<p>the wordpress back-end (dashboard) is generally a good place to work, however for developers, some lists don&#8217;t show all the variables or parameters that would be useful for programming custom displays or functions. for instance, the IDs of posts, pages, categories, tags, etc. are not easily found in the back-end.</p>
<p>you can (and sometimes need to) build your own code snippets to show them on the spot where you are working with them.<br />
this avoids a lot of guesswork.</p>
<p>and now you know how to hide these displays from public view. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/troubleshooting-wordpress-themes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi-Column Grid-Style Posts in WordPress</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template</link>
		<comments>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comments</comments>
		<pubDate>Fri, 29 Jan 2010 11:33:36 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[3 column post]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[columns]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[grid layout]]></category>
		<category><![CDATA[grid style]]></category>
		<category><![CDATA[magazine style]]></category>
		<category><![CDATA[multi-column]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[portofolio]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[thumbnail grid]]></category>
		<category><![CDATA[wordpress forum]]></category>
		<category><![CDATA[wordpress loop]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517</guid>
		<description><![CDATA[following question comes up regularly in the wordpress support forum: &#8216;i want to show my posts in three (four, five) columns, how can i do it?&#8217;
see the effect here in action: under pages &#8216;grid of posts&#8217;.
EDIT:
as this code can have its challenges, and is not always easy to apply, i would like to point to another approach with the same results:
Playing with columns – stacking posts in a grid.
END of EDIT
here, i am going  to  ... &#187; <small><a href="http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template">read more</a></small> &#187;]]></description>
			<content:encoded><![CDATA[<p>following question comes up regularly in the wordpress support forum: &#8216;i want to show my posts in three (four, five) columns, how can i do it?&#8217;</p>
<p>see the effect here in action: under <strong>pages </strong><a href="http://www.transformationpowertools.com/wordpress/grid-posts">&#8216;grid of posts&#8217;</a>.</p>
<p>EDIT:<br />
as this code can have its challenges, and is not always easy to apply, i would like to point to another approach with the same results:<br />
<a href="http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style">Playing with columns – stacking posts in a grid</a>.<br />
END of EDIT</p>
<p>here, i am going  to present yet another solution: a flexible core structure to allow <strong>any</strong> number of columns with <strong>any </strong>number of rows, limited only by screen space, readability and fantasy&#8230;</p>
<div id="attachment_683" class="wp-caption aligncenter" style="width: 522px"><img class="size-large wp-image-683" title="grid-style-template" src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2010/01/grid-style-template-512x375.jpg" alt="a three column grid category template" width="512" height="375" /><p class="wp-caption-text">a three column grid category template</p></div>
<p>the structure (for instance 3 columns, 4 rows, 12 or more posts):<br />
<code> 1  5   9<br />
2  6  10<br />
3  7  11<br />
4  8  12</code></p>
<p>the structure (for instance 3 columns, 4 rows, less than 12 posts, i.e. 7):<br />
<code> 1  4  6<br />
2  5  7<br />
3 </code></p>
<p>i&#8217;ll begin with a step by step introduction into the concept:</p>
<ol>
<li>setting of variables</li>
<li>query_posts</li>
<li>calculate rows</li>
<li>loop 1 &#8211; the columns</li>
<li>the wordpress loop &#8211; the rows</li>
<li>page navigation</li>
</ol>
<p>1. setting the variables:<br />
<code>$set_number_of_columns = 3; // enter numbers of columns here;<br />
$set_number_of_rows = 3; // enter numbers of rows here<br />
$set_showpost = $set_number_of_columns * $set_number_of_rows ;<br />
</code></p>
<p>2. query_posts:<br />
<code>global $query_string;<br />
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;<br />
query_posts($query_string.'&amp;showposts='.$set_showpost.'&amp;paged='.$paged);<br />
<!--formatted--></code></p>
<p>3. calculate rows:<br />
<code>// make adjustment to get three equaly long columns even on last paged page<br />
// get number of posts for this,<br />
$num_of_posts = $wp_query-&gt;post_count;<br />
// divide by $set_number_of_columns to get number per column,<br />
// round up to next integer to make $ppc posts per column variable, or $set_number_of_rows whatever is smaller<br />
$ppc = min(ceil($num_of_posts/$set_number_of_columns),$set_number_of_rows);<br />
// calculates number of rows, i.e. showposts for the following query_posts and get_posts<br />
<!--formatted--></code></p>
<p>4. loop 1 &#8211; the columns:<br />
<code>&lt;?php for ( $col = 1; $col &lt;= $set_number_of_columns; $col += 1) { ?&gt;<br />
&lt;div class="col&lt;?php echo $col; ?&gt;"&gt;<br />
&lt;?php $row = 1;<br />
$noffset = ($col -1) * $ppc + ($paged - 1) * $set_showpost ; //calculate offset parameter if paged ?&gt;<br />
<!--formatted--></code></p>
<p>5. wordpress loop &#8211; the rows and posts:<br />
<code>&lt;?php $posts = get_posts($query_string.'&amp;numberposts='.$ppc.'&amp;offset='.$noffset); foreach ($posts as $post) : start_wp(); ?&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt; class="post row&lt;?php echo $row; ?&gt;"&gt;<br />
&lt;?php //output all post related data, i.e. date, title, content/excerpt, postmetadata, tags, etc. // ?&gt;<br />
&lt;/div&gt; &lt;!--closing .post div --&gt;<br />
<!--formatted--></code></p>
<p>6. page navigation:<br />
<code>&lt;div class="navigation"&gt;<br />
&lt;div class="alignleft"&gt;&lt;?php next_posts_link('&amp;laquo; Older Entries') ?&gt;&lt;/div&gt;<br />
&lt;div class="alignright"&gt;&lt;?php previous_posts_link('Newer Entries &amp;raquo;') ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
<!--formatted--></code></p>
<p>here is the full code:</p>
<div style="border: 2px solid #ffffff; height: 300px; overflow-y: auto;"><code>&lt;?php get_header(); ?&gt;<br />
&lt;?php<br />
// code to display a number of posts in multi columns top-to-bottom left-to-right<br />
?&gt;<br />
&lt;?php global $query_string; ?&gt;<br />
&lt;?php<br />
$set_number_of_columns = 2; // enter numbers of columns here;<br />
$set_number_of_rows = 4; // enter numbers of rows here<br />
$set_showpost = $set_number_of_columns * $set_number_of_rows ;<br />
//setup query with parameter for paged<br />
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;<br />
query_posts($query_string.'&amp;showposts='.$set_showpost.'&amp;paged='.$paged);<br />
// get number of posts for this,<br />
$num_of_posts = $wp_query-&gt;post_count;<br />
// make adjustment for paged to get three equaly long columns even on last paged page<br />
// divide by $set_number_of_columns to get number per column,<br />
// round up to next integer to make $ppc posts per column variable, or $set_number_of_rows whatever is smaller<br />
$ppc = min(ceil($num_of_posts/$set_number_of_columns),$set_number_of_rows);<br />
// calculates number of rows, i.e. showposts for the following query_posts and get_posts<br />
?&gt;<br />
&lt;?php for ( $col = 1; $col &lt;= $set_number_of_columns; $col += 1) { ?&gt;<br />
&lt;div class="col&lt;?php echo $col;?&gt;"&gt;<br />
&lt;?php<br />
$row = 1;<br />
$noffset = ($col -1) * $ppc + ($paged - 1) * $set_showpost ; //calculate offset parameter if paged<br />
$posts = get_posts($query_string.'&amp;numberposts='.$ppc.'&amp;offset='.$noffset);<br />
foreach ($posts as $post) : start_wp(); ?&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt;" class="post row-&lt;?php echo ($row%2); ?&gt;"&gt;<br />
&lt;!-- start of anything to do with post --&gt;<br />
&lt;h2&gt;<br />
&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;<br />
&lt;div class="storycontent"&gt;<br />
&lt;?php the_excerpt(__('(more...)')); ?&gt;<br />
&lt;/div&gt;<br />
&lt;!-- end of anything to do with post --&gt;<br />
&lt;/div&gt; &lt;!-- end #post --&gt;<br />
&lt;?php<br />
$row++;<br />
endforeach; ?&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php // close the for-loop // ?&gt;<br />
&lt;div class="navigation"&gt;<br />
&lt;div class="alignleft"&gt;&lt;?php next_posts_link('&amp;laquo; Older Entries') ?&gt;&lt;/div&gt;<br />
&lt;div class="alignright"&gt;&lt;?php previous_posts_link('Newer Entries &amp;raquo;') ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;?php get_footer(); ?&gt;<br />
<!--formatted--></code></div>
<p>the naming of the css classes is:<br />
class .col1 for the first column; class .col2 for the second column; and so forth.<br />
same thing for the rows: class .row1 for the posts in first row, on so on.<br />
going with this code is the css:<br />
<code>.col1, .col2 {float:left; width:49%; }</code></p>
<p>you can see the code in action: under <strong>pages </strong><a href="http://www.transformationpowertools.com/wordpress/grid-posts">&#8216;grid of posts&#8217;</a>.<br />
the effect ia achieved by giving each post a fixed height; and using a bit of javascript trickery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Zebra style wordpress loop</title>
		<link>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop</link>
		<comments>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop#comments</comments>
		<pubDate>Wed, 13 Jan 2010 23:50:58 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[alternating styles]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[custom theme]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[modification]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme adaptation]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress loop]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=591</guid>
		<description><![CDATA[to start, i would like to express my thanks and gratitude to all the volunteers in the wordpress forum who patiently and freely give their time and attention, and share their knowledge and experience with all the users coming with questions and problems about their wordpress installation and modifications.
a great community.
lists or posts styled with alternating color backgrounds, for instance, can inprove the readability of blogs.
most themes and the standard wordpress installation are not offering  ... &#187; <small><a href="http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop">read more</a></small> &#187;]]></description>
			<content:encoded><![CDATA[<p>to start, i would like to express my thanks and gratitude to all the volunteers in the <a href="http://wordpress.org/support/">wordpress forum</a> who patiently and freely give their time and attention, and share their knowledge and experience with all the users coming with questions and problems about their wordpress installation and modifications.<br />
a great community.</p>
<p>lists or posts styled with alternating color backgrounds, for instance, can inprove the readability of blogs.</p>
<p>most themes and the standard wordpress installation are not offering this feature.<br />
however, it is easy to implement, when you know how.</p>
<p>for example we could give alternating posts within the &#8216;wordpress loop&#8217; a different extra class (&#8216;odd&#8217; or &#8216;even&#8217;) which can then be used with css.<br />
to begin with, we introduce a counter ($c = 0;) before the loop, increment it inside the loop ($c++), and generate a class depending on the number of the counter by checking the modulus 2 of the number ($c % 2 &#8211; modulus is the remainder of the division):</p>
<p><code>&lt;?php $c = 0 ; ?&gt;<br />
&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;<br />
&lt;?php $c++;<br />
if( $c % 2 == 0 ) $extra_class = &#039; even&#039;;<br />
else $extra_class = &#039; odd&#039;; ?&gt;<br />
&lt;div class=&quot;post &lt;?php echo $extra_class; ?&gt;&quot;&gt;<br />
&lt;!--typical stuff in the loop--&gt;<br />
&lt;/div&gt;<br />
&lt;?php endwhile; ?&gt;<br />
&lt;?php else : endif; ?&gt;<br />
<!--formatted--></code> </p>
<p>the class &#8216;odd&#8217; or &#8216;even&#8217; can be used in the style.css to create different background colors, alignments, margins, paddings, font-styles &#8211; no limits.</p>
<p>the most basic application of this method with a counter is how to style the first post in the loop different (only showing the logic part of the code):<br />
<code>&lt;?php $c++;<br />
if( $c == 1 ) $extra_class = &#039; first&#039;;<br />
else $extra_class = &#039;&#039;; ?&gt;<!--formatted--></code></p>
<p>to make it more interesting, the next example is to create three different styles and a special style for the last post on the page.<br />
we can get the number of the last post with <code>$wp_query-&gt;post_count <!--formatted--></code>.<br />
The structure is the same, the main difference is in the &#8216;if, elseif, else&#8217; logic:<br />
<code>&lt;?php $c++;<br />
if( $c == $wp_query-&gt;post_count ) $extra_class = &#039; last&#039;;<br />
elseif( $c % 3 == 0 ) $extra_class = &#039; three&#039;;<br />
elseif( $c % 3 == 2 ) $extra_class = &#039; two&#039;;<br />
elseif( $c % 3 == 1 ) $extra_class = &#039; one&#039;;<br />
?&gt;<!--formatted--></code></p>
<p>you can extend this method to create any number of cyclic classes.</p>
<p>and you can use it in any situation in your wordpress templates, where you loop through some output &#8211; lists, foreach, for, while, posts, comments, &#8230; </p>
<p>special thanks to <a href="http://profiles.wordpress.org/esmi/">@esmi</a> who dared venturing into the realm of more than two alternating styles, and who inspired me to post this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/zebra-style-wordpress-loop/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP default theme in 3 columns</title>
		<link>http://www.transformationpowertools.com/wordpress/wp-default-theme-3-columns</link>
		<comments>http://www.transformationpowertools.com/wordpress/wp-default-theme-3-columns#comments</comments>
		<pubDate>Sat, 02 Jan 2010 22:37:45 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[3 column]]></category>
		<category><![CDATA[3 column default theme]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[dynamic sidebars]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[widget ready]]></category>
		<category><![CDATA[wordpress default]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=462</guid>
		<description><![CDATA[Part of my time, I am spending designing and troubleshooting wordpress themes.

This is my latest &#8216;hack&#8217;, turning the default theme that comes with every wordpress installation, into a 3 column version, with equal sized left and right sidebar columns, all dynamic and widget ready.
All functions of the default theme are fully preserved. You can still modify the header colours from within the dashboard.
All files and graphics zipped for download. A great start for learning to  ... &#187; <small><a href="http://www.transformationpowertools.com/wordpress/wp-default-theme-3-columns">read more</a></small> &#187;]]></description>
			<content:encoded><![CDATA[<p>Part of my time, I am spending designing and troubleshooting wordpress themes.</p>
<p><img class="aligncenter size-full wp-image-464" title="3 column kubrick theme" src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2010/01/screenshot.png" alt="3 column kubrick theme" width="357" height="225" /></p>
<p>This is my latest &#8216;hack&#8217;, turning the default theme that comes with every wordpress installation, into a 3 column version, with equal sized left and right sidebar columns, all dynamic and widget ready.</p>
<p>All functions of the default theme are fully preserved. You can still modify the header colours from within the dashboard.</p>
<p>All files and graphics zipped for <a href="http://www.mediafire.com/download.php?kzikmywnmjn">download</a>. A great start for learning to mod your own theme.</p>
<p>At last a &#8216;default&#8217; wordpress theme that fills the width of my laptop&#8217;s monitor <img src='http://www.transformationpowertools.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Update: horizontal page navigation below the header included.</p>
<p>To activate it, edit header.php and  remove the commenting where indicated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/wp-default-theme-3-columns/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
