<?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; programming</title>
	<atom:link href="http://www.transformationpowertools.com/wordpress/tag/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.transformationpowertools.com/wordpress</link>
	<description>for personal growth and transformation</description>
	<lastBuildDate>Fri, 20 Jan 2012 13:23:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Category Archive Navigation</title>
		<link>http://www.transformationpowertools.com/wordpress/category-archive-navigation</link>
		<comments>http://www.transformationpowertools.com/wordpress/category-archive-navigation#comments</comments>
		<pubDate>Sat, 09 Apr 2011 13:44:16 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Easy Coding for Wordpress]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[next/previous]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=1212</guid>
		<description><![CDATA[A simple next/previous category navigation for the category archive; particular useful if you use your categories to organise your blog, for instance your products, or photos&#8230; the above has a commonly used html structure to help with formatting.]]></description>
			<content:encoded><![CDATA[<p>A simple next/previous category navigation for the category archive; particular useful if you use your categories to organise your blog, for instance your products, or photos&#8230;</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
foreach(get_categories() as $all_cat) {  $cat_ids[] = $all_cat-&gt;term_id; }
 $this_cat = get_query_var('cat');
 $this_cat_position = array_search( $this_cat, $cat_ids ); ?&gt;
&lt;div&gt;
&lt;div&gt;
&lt;?php $prev_cat_position = $this_cat_position -1;
 if( $prev_cat_position &gt;=0 ) {
 $prev_cat_id = array_slice( $cat_ids, $prev_cat_position, 1 );
 echo '&lt;a href=&quot;' . get_category_link($prev_cat_id[0]) . '&quot;&gt;&amp;laquo; ' . get_category($prev_cat_id[0])-&gt;name . '&lt;/a&gt;'; } ?&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;?php $next_cat_position = $this_cat_position +1;
 if( $next_cat_position &lt; count($cat_ids) ) {
 $next_cat_id = array_slice( $cat_ids, $next_cat_position, 1 );
echo '&lt;a href=&quot;' . get_category_link($next_cat_id[0]) . '&quot;&gt;' . get_category($next_cat_id[0])-&gt;name . ' &amp;raquo;&lt;/a&gt;'; } ?&gt;
&lt;/div&gt;
&lt;/div&gt;</pre>
<p>the above has a commonly used html structure to help with formatting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/category-archive-navigation/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hierarchical Category List with Post Titles</title>
		<link>http://www.transformationpowertools.com/wordpress/hierarchical-category-list-with-post-titles</link>
		<comments>http://www.transformationpowertools.com/wordpress/hierarchical-category-list-with-post-titles#comments</comments>
		<pubDate>Wed, 30 Mar 2011 17:00:10 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[advanced]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category list]]></category>
		<category><![CDATA[category posts]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[hierarchical list]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=1156</guid>
		<description><![CDATA[If your wordpress site is organized with categories, it might be very useful to have a template to show an organized list of all categories with the associated posts. This would work similar to the category widget with the setting &#8230; <a href="http://www.transformationpowertools.com/wordpress/hierarchical-category-list-with-post-titles">Check the whole post <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-1167" title="category_list" src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2011/03/category_list-300x115.jpg" alt="" width="300" height="115" />If your wordpress site is organized with categories, it might be very useful to have a template to show an organized list of all categories with the associated posts.</p>
<p>This would work similar to the category widget with the setting &#8216;hierarchical&#8217; &#8211; only that for each category, all the post titles are listed with links to the individual post.</p>
<p>This is the code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/*****************************************************************
*
* alchymyth 2011
* a hierarchical list of all categories, with linked post titles
*
******************************************************************/
// http://codex.wordpress.org/Function_Reference/get_categories

 foreach( get_categories('hide_empty=0') as $cat ) :
 if( !$cat-&gt;parent ) {
 echo '&lt;ul&gt;&lt;li&gt;&lt;strong&gt;' . $cat-&gt;name . '&lt;/strong&gt;&lt;/li&gt;';
 process_cat_tree( $cat-&gt;term_id );
 }
 endforeach;

 wp_reset_query(); //to reset all trouble done to the original query
//
function process_cat_tree( $cat ) {

 $args = array('category__in' =&gt; array( $cat ), 'numberposts' =&gt; -1);
 $cat_posts = get_posts( $args );

 if( $cat_posts ) :
 foreach( $cat_posts as $post ) :
 echo '&lt;li&gt;';
 echo '&lt;a href=&quot;' . get_permalink( $post-&gt;ID ) . '&quot;&gt;' . $post-&gt;post_title . '&lt;/a&gt;';
 echo '&lt;/li&gt;';
 endforeach;
 endif;

 $next = get_categories('hide_empty=0&amp;parent=' . $cat);

 if( $next ) :
 foreach( $next as $cat ) :
 echo '&lt;ul&gt;&lt;li&gt;&lt;strong&gt;' . $cat-&gt;name . '&lt;/strong&gt;&lt;/li&gt;';
 process_cat_tree( $cat-&gt;term_id );
 endforeach;
 endif;

 echo '&lt;/ul&gt;';
}
?&gt;
</pre>
<p>The first step is to find all top level categories (generated in alphabetical order) &#8211; which is simply done with the wordpress function &#8216;get_categories()&#8217; and by checking if the category has a parent.<br />
Caveat: because the code is checking for top level categories only, you can&#8217;t directly use the parameters of &#8216;get_categories()&#8217; (see the Codex, the mostly unread documentation of WordPress) without some customization of the top section of the code.</p>
<p>The second step is to show the titles of all available posts for each top level category, linked to the full individual post; done with &#8216;get_posts()&#8217; and &#8216;get_permalink()&#8217;.</p>
<p>The third step is to find possible direct child categories for this (top) category; done with the &#8216;parent&#8217; parameter of &#8216;get_categories()&#8217;.</p>
<p>Then step 2 and 3 are repeated until all possible categories are dealt with.</p>
<p>edit 11/06/2011: parameter corrected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/hierarchical-category-list-with-post-titles/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Easy Coding for WordPress: Posts in 3 Columns</title>
		<link>http://www.transformationpowertools.com/wordpress/easy-coding-for-wordpress-posts-in-3-columns</link>
		<comments>http://www.transformationpowertools.com/wordpress/easy-coding-for-wordpress-posts-in-3-columns#comments</comments>
		<pubDate>Wed, 23 Mar 2011 14:55:49 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Easy Coding for Wordpress]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[3 column post]]></category>
		<category><![CDATA[3 columns]]></category>
		<category><![CDATA[dividing the_loop]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=1144</guid>
		<description><![CDATA[Sometimes it is the simple things that are hard to find. A basic structure to arrange posts into three columns: The minimal styles needed for the three columns: &#60;div id=&#8221;column-wrap&#8221;&#62; &#60;?php $count = 0; while(have_posts()) : the_post() ?&#62; &#60;div class=&#8221;box&#60;?php &#8230; <a href="http://www.transformationpowertools.com/wordpress/easy-coding-for-wordpress-posts-in-3-columns">Check the whole post <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes it is the simple things that are hard to find.</p>
<p>A basic structure to arrange posts into three columns:</p>
<pre class="brush: php; title: ; notranslate">&lt;div id=&quot;column-wrap&quot;&gt;
&lt;?php $count = 0;

while(have_posts()) : the_post(); ?&gt;

&lt;div class=&quot;box&lt;?php if( $count%3 == 0 ) { echo '-1'; }; $count++; ?&gt;&quot;&gt;

&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;
&lt;!--and other output of the loop --&gt;

&lt;/div&gt;

&lt;?php endwhile; ?&gt;
&lt;/div&gt;&lt;!--end column-wrap--&gt;</pre>
<p>The minimal styles needed for the three columns:</p>
<pre class="brush: plain; title: ; notranslate">
.box-1 { float:left; clear:left; width: 30%; margin-left: 0; }
.box { float:left; width: 30%; margin-left: 3%; }
</pre>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<ol>
<li class="li1">
<div class="de1">&lt;div id=&#8221;column-wrap&#8221;&gt;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$count</span> <span class="sy0">=</span> <span class="nu0">0</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">while</span><span class="br0">(</span>have_posts<span class="br0">(</span><span class="br0">)</span><span class="br0">)</span> <span class="sy0">:</span> the_post<span class="br0">(</span><span class="br0">)</span></div>
</li>
<li class="li1">
<div class="de1"><span class="sy1">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&lt;div class=&#8221;box<span class="kw2">&lt;?php</span> <span class="kw1">if</span><span class="br0">(</span> <span class="re0">$count</span><span class="sy0">%</span><span class="nu19">3</span> <span class="sy0">==</span> <span class="nu0">0</span> <span class="br0">)</span> <span class="br0">{</span> <span class="kw1">echo</span> <span class="st_h">&#8216;-1&#8242;</span><span class="sy0">;</span> <span class="br0">}</span><span class="sy0">;</span> <span class="re0">$count</span><span class="sy0">++;</span> <span class="sy1">?&gt;</span>&#8220;&gt;</div>
</li>
<li class="li1">
<div class="de1">&lt;a href=&#8221;<span class="kw2">&lt;?php</span> the_permalink<span class="br0">(</span><span class="br0">)</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&#8220;&gt;</div>
</li>
<li class="li1">
<div class="de1">&lt;h4&gt;<span class="kw2">&lt;?php</span> the_title<span class="br0">(</span><span class="br0">)</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&lt;/h4&gt;&lt;/a&gt;</div>
</li>
<li class="li1">
<div class="de1">&lt;!&#8211;and other output of the loop &#8211;&gt;</div>
</li>
<li class="li1">
<div class="de1">&lt;/div&gt;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span> <span class="kw1">endwhile</span><span class="sy0">;</span> <span class="sy1">?&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&lt;/div&gt;&lt;!&#8211;end column-wrap&#8211;&gt;</div>
</li>
<li class="li1">
<div class="de1">&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
</li>
<li class="li1 ln-xtra">
<div class="de1">STYLES &#8211; EXAMPLE</div>
</li>
<li class="li1">
<div class="de1">.box-1 { float:left; clear:left; width: 30%; margin-left: 0;  }</div>
</li>
<li class="li1">
<div class="de1">.box { float:left; width: 30%; margin-left: 3%; }</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/easy-coding-for-wordpress-posts-in-3-columns/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Finding Exact Information on WordPress Functions</title>
		<link>http://www.transformationpowertools.com/wordpress/finding-exact-information-on-wordpress-functions</link>
		<comments>http://www.transformationpowertools.com/wordpress/finding-exact-information-on-wordpress-functions#comments</comments>
		<pubDate>Thu, 30 Sep 2010 13:03:17 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web search]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=1040</guid>
		<description><![CDATA[According to my motto: &#8216;Knowledge is Knowing where it is Written&#8217; by Albert Einstein &#8211; I like to look up the core files of WordPress where the functions are defined. What I quite often do when I come across something &#8230; <a href="http://www.transformationpowertools.com/wordpress/finding-exact-information-on-wordpress-functions">Check the whole post <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>According to my motto: </p>
<blockquote><p>&#8216;Knowledge is Knowing where it is Written&#8217;<br />
<small>by Albert Einstein</small></p></blockquote>
<p> &#8211; I like to look up the core files of WordPress where the functions are defined.</p>
<p>What I quite often do when I come across something new or not fully understood &#8211; a function, or template tag, or whatever wordpress related:</p>
<p>I search the web for it; not just with any keywords, but quite focussed.</p>
<p>Lets take the example of one of my earlier posts (<a href="http://www.transformationpowertools.com/wordpress/front-page-comments-wordpress-blog">Front Page Comments on your WordPress Blog</a>) where I was investigating why comments don&#8217;t easily show on the front page or on archive pages of a blog: </p>
<p>The function in the template files that would show comments and the comment form, is &#8216;comments_template()&#8217; &#8211; I therefore search for:</p>
<p><strong>&#8216;function comments_template()&#8217;</strong></p>
<p>the search engine of my choice returns (apart from many other links) first of all the link to the documentation in the codex; and a link to the core file (and the exact line):</p>
<p><img src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2010/09/wp_search.jpg" alt="" title="wp_search" width="600" height="300" class="aligncenter size-full wp-image-1047" /></p>
<p>Obviously, my search engine knows me, so the relevant results show quite at the top of all possible search results; you may need to scroll down a few pages to find the important link: the one beginning with <strong>&#8216;PHPXRef&#8217;</strong>.</p>
<p>the link to follow is:</p>
<p>http://phpxref.ftwr.co.uk/wordpress/_functions/comments_template.html</p>
<p>in the page that opens, you&#8217;ll get the line:<br />
<strong>defined at:</strong> followed by a link.</p>
<p>click on that link; </p>
<p>http://phpxref.ftwr.co.uk/wordpress/wp-includes/comment-template.php.html#comments_template</p>
<p>that leads you to:</p>
<p><img src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2010/09/wp_search2.jpg" alt="" title="wp_search2" width="700" height="400" class="aligncenter size-full wp-image-1048" /></p>
<p>with a list of some functions; click on the title of the one you are looking up.</p>
<p>http://phpxref.ftwr.co.uk/wordpress/wp-includes/comment-template.php.source.html#l822</p>
<p><img src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2010/09/wp_search3.jpg" alt="" title="wp_search3" width="750" height="500" class="aligncenter size-full wp-image-1049" /></p>
<p>in there in line 851, you have it (the code that explains why comments do not automatically show on the front page; and what you can do to make them show):</p>
<pre class="brush: php; title: ; notranslate">851      if ( !(is_single() || is_page() || $withcomments) || empty($post) )</pre>
<p>btw:<br />
This search method is also great for finding related functions, global wordpress variables, and expanding your vocabulary and understanding of wordpress terms&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/finding-exact-information-on-wordpress-functions/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changing the &#8216;Read more&#8217; in Twenty Ten Child Theme</title>
		<link>http://www.transformationpowertools.com/wordpress/read-more-in-twenty-ten-child-theme</link>
		<comments>http://www.transformationpowertools.com/wordpress/read-more-in-twenty-ten-child-theme#comments</comments>
		<pubDate>Thu, 23 Sep 2010 17:06:03 +0000</pubDate>
		<dc:creator>alchymyth</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[customisation]]></category>
		<category><![CDATA[internationalisation]]></category>
		<category><![CDATA[more tag]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[read more]]></category>
		<category><![CDATA[translation]]></category>
		<category><![CDATA[TwentyTen]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=992</guid>
		<description><![CDATA[To change the &#8216;read more&#8217; text in a child theme of Twenty Ten, one needs to add a few lines to functions.php of the child theme. This procedure uses a method that I came across in an introductory article about &#8230; <a href="http://www.transformationpowertools.com/wordpress/read-more-in-twenty-ten-child-theme">Check the whole post <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To change the &#8216;read more&#8217; text in a child theme of Twenty Ten, one needs to add a few lines to functions.php of the child theme.</p>
<p>This procedure uses a method that I came across in an introductory article about <a href="http://aaron.jorb.in/blog/2010/04/introducing-thirty-ten/">programming a child theme of Twenty Ten, by Aaron Jorbin</a>, who himself was building upon <a href="http://blog.ftwr.co.uk/archives/2010/01/02/mangling-strings-for-fun-and-profit/">Mangling strings for fun and profit, by WordPress lead Developer Peter Westwood.</a></p>
<pre class="brush: php; title: ; notranslate">
class Transformation_Text_Wrangler {
function reading_more($translation, $text, $domain) {
$translations = &amp;get_translations_for_domain( $domain );
if ( $text == 'Continue reading &lt;span class=&quot;meta-nav&quot;&gt;&amp;rarr;&lt;/span&gt;' ) {
return $translations-&gt;translate( 'Get to know more &lt;span class=&quot;meta-nav&quot;&gt;&amp;raquo;&lt;/span&gt;' );
}
return $translation;
}
}
add_filter('gettext', array('Transformation_Text_Wrangler', 'reading_more'), 10, 4);
</pre>
<p>This way of customising texts in a child theme is applicable to all the strings of the mother theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/read-more-in-twenty-ten-child-theme/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>WordPress as a Model of Human Consciousness</title>
		<link>http://www.transformationpowertools.com/wordpress/wordpress-as-a-model-of-human-consciousness</link>
		<comments>http://www.transformationpowertools.com/wordpress/wordpress-as-a-model-of-human-consciousness#comments</comments>
		<pubDate>Wed, 29 Jul 2009 12:40:36 +0000</pubDate>
		<dc:creator>dr michael</dc:creator>
				<category><![CDATA[Personal Development]]></category>
		<category><![CDATA[consciousness]]></category>
		<category><![CDATA[human mind]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[subconsciousness]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=50</guid>
		<description><![CDATA[Many researchers of the human mind have already tried to explain some aspects of the workings of the mind and ego by analogy of a computer. This holds true also for an open source program such as wordpress. I will &#8230; <a href="http://www.transformationpowertools.com/wordpress/wordpress-as-a-model-of-human-consciousness">Check the whole post <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-55" title="matrix" src="http://www.transformationpowertools.com/wordpress/wp-content/uploads/2009/07/matrix.jpg" alt="matrix" width="75" height="502" />Many researchers of the human mind have already tried to explain some aspects of the workings of the mind and ego by analogy of a computer.</p>
<p>This holds true also for an open source program such as wordpress.</p>
<p>I will put it this way: the wordpress software, ie. the core program, is the subconsciousness. We know it is there, but generally we are not aware of it and don&#8217;t understand how it works. And, unless something goes wrong, we don&#8217;t really want to know.</p>
<p>And in a way, you could see that all the programmers and organizers of wordpress.org  as an open source software  are a kind of  &#8217;creator&#8217; who is well above all and who has put all this out for us to work with. This is not unlike some interpretation of G.O.D. (greater organized design) who made us but also gave us the freedom and intelligence to change the program.</p>
<p>Now, there a many many thousands of blogs out there, using wordpress.org software to program there own way of expression.</p>
<p>What every blog software does, is to take a lot of input in (the posts, pages, articles, pictures and so) and arrange and present them in a way that is personal and special for the individual (programmer).<br />
<span id="more-50"></span><br />
In wordpress, these are the php-files, such as index.php, single.php, functions.php, comments.php, and so on.</p>
<p>This is analogue to the conscious mind which does exactly the same &#8211; gathering input (through our senses), storing it (memory),  sorting it, and creating specific output, based on a hidden program.</p>
<p>The &#8216;sorting program&#8217; is build upon past experiences, ways we accepted from our parents, teachers, the society, religion, and so forth.</p>
<p>Think of the primary output as the HTML code that is generated by the wordpress php files. If you look at that on a screen, it seems pretty &#8216;bland&#8217;, uniform, not very interesting.</p>
<p>This is where the themes of wordpress come in: they individualize the output in a way that is again personal to the individual designing them. They add the CSS styles, and make the output colorful, creative, enjoyable (or not, if you don&#8217;t like the theme).</p>
<p>(Look up <a href="http://www.csszengarden.com/" target="_blank">CSS Zen Garden </a>if you are not familiar with css.)</p>
<p>Again, i like to compare this to the human mind. The ego will use its &#8216;css style sheet&#8217; and &#8216;color&#8217; any message it receives from the mind, and will give it an individual meaning.</p>
<p>Just present a piece of information to a group of people and watch how they react &#8211; you can be sure to get a whole range of different reactions.</p>
<p>The good thing with this model is, that we have the power and opportunity to change the programs, the php files, the themes, the css at any time.</p>
<p>As a programmer &#8211; and we all are our own programmers ! (even if we don&#8217;t like the programming results) &#8211; you can adapt the wordpress files, change your theme, and tweak the style sheets at any time.</p>
<p>This is the fantastic opportunity when you host your own wordpress blog (ie. when you are an individual in control of your life), it gives you control over &#8216;consciousness, mind, and ego&#8217;, to stay within the model.</p>
<p>Those who run the free blogs on wordpress.com, on the contrary, have not this level of control. They have to use what they get offered by somebody else (ie. the makers of wordpress.com, the filter programs that filter all the html input in the posts, the providers of the free themes you can choose from, and so on). They have a limited choice of  &#8216;conscious decisions&#8217;, &#8216;ways of expression&#8217;, &#8216;influence&#8217;.</p>
<p>Sounds very familiar with real life, where the expression of the &#8216;masses&#8217; are pre-programmed and limited by a small elite (tv and media, politicians, church, tradition, teachers, &#8230;).</p>
<p>Coming back to the beginning of this post, where I compared the wordpress software with the subconsciousness, I hold the vision that when enough conscious people (programmers) join and work together, they can change the very core programming of the consciousness, the subconsciousness of mankind &#8211; also known as &#8216;common consciousness&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.transformationpowertools.com/wordpress/wordpress-as-a-model-of-human-consciousness/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

