<?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>Megatao &#187; wordpress</title>
	<atom:link href="http://www.megatao.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.megatao.com</link>
	<description>An Apple Geek Speaks Out</description>
	<lastBuildDate>Sat, 28 Jan 2012 18:31:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Add Child Pages As Teasers In Thesis</title>
		<link>http://www.megatao.com/add-child-pages-as-teasers-in-thesis</link>
		<comments>http://www.megatao.com/add-child-pages-as-teasers-in-thesis#comments</comments>
		<pubDate>Wed, 04 Aug 2010 15:49:58 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=1038</guid>
		<description><![CDATA[If you are into building affiliate sites in WordPress that follow a nice, structured, nested page method to show the products, then you might have set up something like this: Brand1 -product 1 -product 2 --color1 --color2 -product 3 Brand2 -product 1 -product 2 But, to make things easier for yourself, on the Brand1, Brand2 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you are into building affiliate sites in WordPress that follow a nice, structured, nested page method to show the products, then you might have set up something like this:</p>
<p>Brand1<br />
-product 1<br />
-product 2<br />
--color1<br />
--color2<br />
-product 3<br />
Brand2<br />
-product 1<br />
-product 2</p>
<p>But, to make things easier for yourself, on the Brand1, Brand2 and product 2 pages, it would be great to be able to show the child pages that go underneath automatically, rather than having to edit the parent page all the time if you add a new one.  I love the teasers layout that the <a href="http://diythemes.com/">Thesis theme</a> gives, so I set about coding something to show the child pages under the page content.</p>
<p>I did this using the excellent <a href="http://wordpress.org/extend/plugins/thesis-openhook/">Thesis OpenHook</a> plugin and put the following code in the thesis_hook_after_content section and it works like a dream:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- Show only on single pages --&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$children</span> <span style="color: #339933;">=</span> get_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;title_li=&amp;child_of=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;echo=0&amp;depth=1&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$children</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$teaser_count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$children</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$childpage</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$post_count</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$childpage</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$child_page_array</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$child_page_array</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$post_count</span><span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;,&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
	<span style="color: #000088;">$args</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_type'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'page'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'post__in'</span><span style="color: #339933;">=&gt;</span>explode<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;,&quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$child_page_array</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$sub_query</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$sub_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$sub_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$sub_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$teaser_count</span> <span style="color: #339933;">%</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$top</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_count</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">' top'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$open_box</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span>&lt;div class=<span style="color: #000099; font-weight: bold;">\&quot;</span>teasers_box<span style="color: #006699; font-weight: bold;">$top</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$close_box</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$right</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">else</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$open_box</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$close_box</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span>&lt;/div&gt;<span style="color: #000099; font-weight: bold;">\n</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$right</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$open_box</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$open_box</span><span style="color: #339933;">;</span>
		thesis_hook_before_teasers_box<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_count</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	thesis_teaser<span style="color: #009900;">&#40;</span><span style="color: #000088;">$classes</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_count</span><span style="color: #339933;">,</span> <span style="color: #000088;">$right</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$close_box</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$close_box</span><span style="color: #339933;">;</span>
		thesis_hook_after_teasers_box<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post_count</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$teaser_count</span><span style="color: #339933;">++;</span>
&nbsp;
<span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Recent searches:</h4>array of child pages thesis, showing teaser content on a parent page wordpress, teaser of children on a parent page]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/add-child-pages-as-teasers-in-thesis/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get A Free Niche Store</title>
		<link>http://www.megatao.com/get-a-free-niche-store</link>
		<comments>http://www.megatao.com/get-a-free-niche-store#comments</comments>
		<pubDate>Mon, 27 Jul 2009 14:42:26 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[bans]]></category>
		<category><![CDATA[build a niche store]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[make money online]]></category>

		<guid isPermaLink="false">http://www.megatao.com/get-a-free-niche-store</guid>
		<description><![CDATA[Do you want to make money online? YES!! Do you want to spend lots of time choosing a niche, creating the website, writing the content, designing the graphics, promoting the pages, researching the information and marketing? NO!! Great... Head over to the Build A Niche Store Guide website, where Mark, the owner is giving away [...]]]></description>
			<content:encoded><![CDATA[<p></p><blockquote><p>Do you want to make money online?</p>
<p><b>YES!!</b></p>
<p>Do you want to spend lots of time choosing a niche, creating the website, writing the content, designing the graphics, promoting the pages, researching the information and marketing?</p>
<p><b>NO!!</b></p></blockquote>
<p>Great...</p>
<p>Head over to the <a href="http://www.buildanichestoreguide.com/site-contest/">Build A Niche Store Guide</a> website, where Mark, the owner is giving away a niche store - thats right!&nbsp; FREE!</p>
<p>Mark has been following the "<a href="http://taoski.n1way.hop.clickbank.net">Number 1 Way To Make Money Online</a>" guide, written by the makers of the amazing Build A Niche Store software that lets you make money by participating in eBay's affiliate scheme.</p>
<div align="center"><a href="http://taoski.n1way.hop.clickbank.net"><img src="http://www.thenumber1waytomakemoneyonline.com/affiliates/468x60.jpg" alt="Make Money Online" border="0" height="60" width="468" /></a></div>
<p>There are full details on Mark's site about how to <a href="http://www.buildanichestoreguide.com/site-contest/">enter the competition</a> and what you get to win is a professionally built store, ready to make you money "out of the box".</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=239821ef-9b3a-82ff-983a-9305fe67febe" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/get-a-free-niche-store/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for iphone</title>
		<link>http://www.megatao.com/wordpress-for-iphone</link>
		<comments>http://www.megatao.com/wordpress-for-iphone#comments</comments>
		<pubDate>Tue, 22 Jul 2008 12:54:42 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[geobay+iphone+3g]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.megatao.com/wordpress-for-iphone</guid>
		<description><![CDATA[So as I sit here in my car munching on my salad baguette (no butter) listening to some boring bloke on Radio 4 mumbling on about politics - I can blog too! WordPress have released a bloggin app for the iPhone which is pretty damn amazing! Well worth getting WordPress now. And an iPhone too.]]></description>
			<content:encoded><![CDATA[<p></p><p>So as I sit here in my car munching on my salad baguette (no butter) listening to some boring bloke on Radio 4 mumbling on about politics - I can blog too!</p>
<p>WordPress have released a bloggin app for the iPhone which is pretty damn amazing!</p>
<p>Well worth getting WordPress now.  And an iPhone too.</p>
<p><a href="http://www.megatao.com/wp-content/uploads/2008/07/p-640-480-1f1539d2-88ad-4097-8c70-fe57bfdee6fd.jpeg"><img src="http://www.megatao.com/wp-content/uploads/2008/07/p-640-480-1f1539d2-88ad-4097-8c70-fe57bfdee6fd.jpeg" alt="photo" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/wordpress-for-iphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WriteToMyBlog</title>
		<link>http://www.megatao.com/writetomyblog</link>
		<comments>http://www.megatao.com/writetomyblog#comments</comments>
		<pubDate>Sun, 22 Oct 2006 20:04:09 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[cool links]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=470</guid>
		<description><![CDATA[Tsk! To think that I have been using that slow WordPress editor for so long... I posted a question over at the WordPress support forums in search of a web based editor I could use to post to my blog from work - without actually ever visiting it. Not that this blog is subversive or [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
<img align="left" alt="Writetomyblog logo" height="43" hspace="5" src="http://writetomyblog.com/images/logo.gif" style="margin: 5px; width: 216px; height: 43px" title="write to my blog logo" vspace="5" width="216" />Tsk!  To think that I have been using that slow WordPress editor for so long...
</p>
<p>
I <a href="http://wordpress.org/support/topic/91500?replies=5">posted a question</a>  over at the <a href="http://wordpress.org/support">WordPress support forums</a>  in search of a web based editor I could use to post to my blog from work - without actually ever visiting it.
</p>
<p>
Not that this blog is subversive or <a href="http://www.megatao.com/?p=241">contains illegal material</a> , <a href="http://www.megatao.com/?p=440">slanderous comments</a>  or items of a <a href="http://www.megatao.com/?p=232">sexual nature</a> .  It's just that I have started a new job and don't want to make it obvious I am a blogger, that I blog and yes, I might be blogging about YOU.
</p>
<p>
The moderators over at the WP support forums came back with this site:  <a href="http://www.WriteToMyBlog.com">WriteToMyBlog</a>  is a web based editor based on <a href="http://tinymce.moxiecode.com/">TinyMCE</a>  which allows remote posting to your blog - but via an excellent WYSIWYG editor.  The editor is much better than the ones supplied with Blogger and WordPress and it even handles a copy/paste from Microsoft Word - the enemy of working HTML!
</p>
<p>
I welcome my new interface to <a href="http://MegaTao.com">MegaTao.com</a>  and hope you will all heed my advice to start using it.
</p>
<p>
You can <a href="http://mudbomb.com/archives/2005/02/02/wysiwyg-plugin-for-wordpress/">get a TinyMCE plugin for WordPress</a>  too though - but I shall be sticking with WTMB.
</p>
<div id="wtmb_tags" style="font-size:88%">
<p>Tags: <a href="http://technorati.com/tag/writetomyblog" rel="tag">writetomyblog</a>, <a href="http://technorati.com/tag/wordpress" rel="tag">wordpress</a>, <a href="http://technorati.com/tag/tinyMCE" rel="tag">tinyMCE</a>, <a href="http://technorati.com/tag/blog" rel="tag">blog</a>, <a href="http://technorati.com/tag/post" rel="tag">post</a>, <a href="http://technorati.com/tag/anonymous" rel="tag">anonymous</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/writetomyblog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Names</title>
		<link>http://www.megatao.com/domain-names</link>
		<comments>http://www.megatao.com/domain-names#comments</comments>
		<pubDate>Fri, 02 Jun 2006 17:52:37 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=5</guid>
		<description><![CDATA[I promised myself a long time ago that I would quit Blogger and get my own domain name, install WordPress and start doing my own stuff. I did half of that, well - sorta.&#160; I did quit Blogger and I have moved to using WordPress but I am still hogging on somone elses domain and [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I <a href="http://taoskiblog.wordpress.com/2006/01/11/im-on-the-move/">promised myself</a> a long time ago that I would quit <a href="http://taoski.blogspot.com">Blogger</a> and get my own domain name, <a href="http://www.wordpress.org">install WordPress</a> and start doing my own stuff.</p>
<p>I did half of that, well - sorta.&nbsp; I did <a href="http://taoskiblog.wordpress.com/blogger-defection/">quit Blogger</a> and I have moved to using WordPress but I am still hogging on somone <a href="http://www.wordpress.com">elses domain</a> and don&#8217;t have any creative control over my template here.</p>
<p><a href="http://www.taoski.com">http://www.taoski.com</a> had already been taken, <a href="http://www.photao.com">http://www.photao.com</a> has been taken too, so I have been looking around at other possible domain names.&nbsp; I decided that I did&#8217;nt want to go for <a href="http://www.taoskiblog.com">http://www.taoskiblog.com</a> as I don&#8217;t want to be limited to just a &#8220;blog&#8221; type domain name.&nbsp; I also wanted to get myself a &#8220;cool&#8221; and &#8220;web 2.0&#8243; sounding name such as <a href="http://www.Flickr.com">Flickr</a> or <a href="http://www.Labelr.com">Labelr</a> or something like that.</p>
<p>The only thing I have come up with a the moment is <a href="http://www.spangl.com">http://www.spangl.com</a>.&nbsp; &#8220;Spangle&#8221;.&nbsp; Not too sure on it though.&nbsp; I think the idea came from the obscure title of <a href="http://akugyaku.blogspot.com/2006/05/spangles-it-just-tastes-better.html">one of Nick&#8217;s postings</a>.</p>
<p>But I have been thinking.</p>
<p>Are domain names so important now?&nbsp; Most of the sites I come across are through links on <a href="http://del.icio.us">http://del.icio.us</a> or through other peoples blogs and Google.&nbsp; I can&#8217;t think of that many occasions where I have given links to people by word of mouth.&nbsp; So would it really matter if my domain was http://www.taoskis-wonderful-blog.com or http://www.tao-was-ere-again.com?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/domain-names/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Blogger Templates</title>
		<link>http://www.megatao.com/blogger-templates</link>
		<comments>http://www.megatao.com/blogger-templates#comments</comments>
		<pubDate>Wed, 31 May 2006 15:02:39 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=8</guid>
		<description><![CDATA[Some excellent free Blogger Templates here, including a port of the excellent K2 wordpress template! Almost makes me want to stop writing my Blogger Template Overhaul series&#8230;. Via ProBlogger]]></description>
			<content:encoded><![CDATA[<p></p><p>Some excellent <a href="http://www.geckoandfly.com/blogspot-templates/">free Blogger Templates here</a>, including a port of the excellent <a href="http://binarybonsai.com/wordpress/k2/">K2 wordpress template</a>!</p>
<p>Almost makes me want to stop writing my <a href="http://geeklimit.com/2006/05/10/blogger-template-overhaul-part-1-of-8/">Blogger Template Overhaul series</a>&#8230;.</p>
<p>Via <a href="http://www.problogger.net/">ProBlogger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/blogger-templates/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>a week of wordpress</title>
		<link>http://www.megatao.com/a-week-of-wordpress</link>
		<comments>http://www.megatao.com/a-week-of-wordpress#comments</comments>
		<pubDate>Wed, 03 May 2006 18:10:00 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=23</guid>
		<description><![CDATA[WordPress and I have now hit first base!&#160; It has been just over one week since I made the cut over from Blogger and we are already holding hands and giving each other pet names. &#34;love you&#8230; pressy&#8230;&#34; Since moving over I feel all &#34;grown up&#34; and serious about blogging.&#160; Joining Geeklimit has made this [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>WordPress and I have now hit first base!&nbsp; It has been just over one week since I made the cut over from Blogger and we are already holding hands and giving each other pet names.</p>
<blockquote><p>&quot;love you&#8230; pressy&#8230;&quot;</p>
</blockquote>
<p>Since moving over I feel all &quot;grown up&quot; and serious about blogging.&nbsp; Joining <a href="http://geeklimit.com">Geeklimit</a> has made this feeling more real and it feels great to be doing some proper technical blogging stuff, like.</p>
<p>As usual I have been obsessed with watching my stats and wordpress gives you a few builtin tools to track your visitors, popular posts and how people came to the site.</p>
<p><a href="http://taoskiblog.wordpress.com/files/2006/05/stats.jpg" title="stats.jpg"><img src="http://taoskiblog.wordpress.com/files/2006/05/stats.thumbnail.jpg" alt="stats.jpg" /></a>My traffic is slowly building and since taking this capture has rocketed after an influx of visits from <a href="http://geeklimit.com">Geeklimit</a>.</p>
<p>Overall, I am very impressed with WordPress and would recommend it to anyone!&nbsp; There is a wealth of free templates available (although we cannot change them here on <a href="http://www.wordpress.com">wordpress.com</a>).&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/a-week-of-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress=amazing!</title>
		<link>http://www.megatao.com/wordpressamazing</link>
		<comments>http://www.megatao.com/wordpressamazing#comments</comments>
		<pubDate>Tue, 25 Apr 2006 14:53:36 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=38</guid>
		<description><![CDATA[I am already amazed by the WordPress blogging platform! Just this morning I have been able to: Import all of my posts and comments from Blogger Set up my sidebar using a drag-and-drop widget editor. Add a page that Blogger users get directed to with my popular posts listed. So far, I am more than [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I am already amazed by the WordPress blogging platform!</p>
<p>Just this morning I have been able to:</p>
<ul>
<li>Import all of my posts and comments from Blogger</li>
<li>Set up my sidebar using a drag-and-drop widget editor.</li>
<li>Add a <a href="http://taoskiblog.wordpress.com/blogger-defection/">page that Blogger users get directed to</a> with my popular posts listed.</li>
</ul>
<p>So far, I am more than impressed.</p>
<p>In the (near) future I will be moving this to my own webspace, so the URL will change again.<br />
Wordpress has many, many templates available but here at WordPress.com you cannot edit the template code (at the moment).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/wordpressamazing/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blogger?  Sod off!</title>
		<link>http://www.megatao.com/blogger-sod-off</link>
		<comments>http://www.megatao.com/blogger-sod-off#comments</comments>
		<pubDate>Mon, 24 Apr 2006 20:02:53 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=39</guid>
		<description><![CDATA[Thats it!&#160; I have had enough!&#160; I have decided to switch my blog from Blogger to WordPress pending the purchase of some webspace. At the moment, Blogger is having real issues with publishing and is sticking at 0%. All the other Blogger users over at the Blogger Support Group are reporting the same thing too. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><b>Thats it!</b>&nbsp; I have had enough!&nbsp;</p>
<p>I have decided to switch <a href="http://taoski.blogspot.com" title="Taoski">my blog</a> from Blogger to WordPress pending the purchase of some webspace.</p>
<p>At the moment, Blogger is having real issues with publishing and is sticking at 0%.<br />
All the other Blogger users over at the <a href="http://groups.google.com/group/blogger-help?lnk=li">Blogger Support Group</a> are reporting the same thing too.</p>
<p>I have been planning to get rid of Blogger for some time now as they seem to have alot of publishing issues. I still have my &quot;Bling Your Blog&quot; series underway in <a href="http://www.writely.com" title="Writely">Writely</a> which focuses on customising a Blogger template so I might still publish that here.&nbsp; When Blogger sorts themselves out, I will also import all my posts to here and make a new template that auto-redirects to this site.</p>
<p>Fancy that! A Blogger &quot;how to&quot; posted on a WordPress blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/blogger-sod-off/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Think again&#8230;</title>
		<link>http://www.megatao.com/think-again</link>
		<comments>http://www.megatao.com/think-again#comments</comments>
		<pubDate>Wed, 25 Jan 2006 23:35:00 +0000</pubDate>
		<dc:creator>taoski</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.megatao.com/?p=79</guid>
		<description><![CDATA[I had this great idea. I would install Apache and WordPress locally, following the instructions over here and publish a work intranet blog thing to help us feed out information to the members of our (small) section. I have recently been fiddling with this setup on my machine at home and if you are lucky, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://photos1.blogger.com/blogger/4738/98/1600/logo-small.gif"><img border="0" src="http://photos1.blogger.com/blogger/4738/98/400/logo-small.gif" /></a>I had this great idea.</p>
<p>I would install <a href="http://www.apache.org">Apache</a> and <a href="http://wordpress.org">WordPress</a> locally, following the instructions over <a href="http://www.tamba2.org.uk/wordpress/xampp/">here</a> and publish a work intranet blog thing to help us feed out information to the members of our (small) section.</p>
<p>I have recently been fiddling with this setup on my machine at home and if you are lucky, you might even find my test WordPress blog lurking over at <a href="http://taoski.blogdns.com">http://taoski.blogdns.com</a> - but only if my firewall lets you in, the Apache stuff is running and the kids are not playing <a href="http://www.nickjr.co.uk/shows/backyardigans/index.aspx">Backyardigans games</a> on the web.</p>
<p>It works pretty well - especially for testing out WordPress - which is way, way, way more advanced than <a href="http://www.blogger.com">Blogger</a> and looks pretty cool. I <a href="http://taoski.blogspot.com/2006/01/im-on-move.html">still intend</a> to migrate to WordPress and my own domain at some point - but as you can guess from my <a href="http://taoski.blogspot.com/2006/01/its-not-what-you-know.html">previous post</a>, cash and my spare time might be a little tight!</p>
<p>Anyway. I get the site set up at work and its all working but Apache just keeps on crashing!</p>
<p>Crashing when I attempt to upload a file during a post, crashing when I try to post a test comment and crashing when I move the mouse too fast after drinking too much coffee.</p>
<p>I&#39;m on the late shift tonight - so I might have time to play with it a little more.</p>
<p>Ahhh&#8230; the joys of a technical job&#8230; Don&#39;t you just love it?<br />
It used to be all &quot;exciting&quot;, &quot;innovative&quot; and &quot;rewarding&quot; but now it&#39;s just &quot;boring&quot;, &quot;samey&quot; and &quot;mundane&quot;.</p>
<p>I wish I had used my A-Level art and A-Level Graphics Design for something rather than just creating a pile of quickly deteriorating artwork under my bed or making the odd kiddies party invitation on MS Publisher.</p>
<p>A nice design job like <a href="http://driverchris.blogspot.com">DriverChris</a> does would be nice&#8230;.</p>
<p>09:50: Turn up to work with expensive &quot;Michael Caine&quot; glasses, expensive sharp suit and expensive coffee in hand.<br />
10:30: Start &quot;design&quot; work after reading The Guardian and sending emails to your &quot;pretend mates&quot; on your Blackberry.<br />
12:00: Off to the Wine Bar for lunch with &quot;Fifi and Charles&quot; from &quot;The agency&quot;.<br />
13:30: Back to work to sketch out that idea that came to you as you &quot;piss-chased&quot; some chewing gum round the urinal in the wine bar.<br />
13:40: Get distracted for a while by minimising the windows on your Mac to &quot;the dock&quot; and back again. You forget the idea you had. Time to have a power-nap.<br />
14:30: Play with your Mac a bit more and read some websites about design and Audi cars.<br />
15:00: Team meeting in the office. See who&#39;s got the brightest pink shirt and discuss the future of &quot;frameless fixed-width inline CSS templates&quot; for your customer portfolio.<br />
15:50: Return to the desk and fiddle with Illustrator/Photoshop/Quark until the boss goes home.<br />
17:00: Off home on the tube with your iPod, another expensive coffee and copy of Stuff magazine.<br />
18:00: Get home to your lonely flat. Cry in your Findus &quot;sad and lonely microwave meal for one&quot;. Go bed early after watching Trinnie and Susannah, getting tipsy on sparking white wine and being all confused over your sexual preferences&#8230;.</p>
<p>Is the grass greener? Who knows?</p>
<p>I won&#39;t. I am doomed to be stuck at this desk whilst a telephone headset burns a ridge into my skull, I fix the same faults I resolved 4 years ago and the world passes me by.</p>
<p>EDIT: Just found this alternative program for running Apache and MySql locally to run WordPress: <a href="http://www.wampserver.com/en/index.php">WampServer</a></p>
<p>Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/apache" title="Link to Technorati Tag category for apache">apache</a>, <a rel="tag" href="http://www.technorati.com/tag/wordpress" title="Link to Technorati Tag category for wordpress">wordpress</a>, <a rel="tag" href="http://www.technorati.com/tag/xampp" title="Link to Technorati Tag category for xampp">xampp</a>, <a rel="tag" href="http://www.technorati.com/tag/blogger" title="Link to Technorati Tag category for blogger">blogger</a>, <a rel="tag" href="http://www.technorati.com/tag/intranet" title="Link to Technorati Tag category for intranet">intranet</a>, <a rel="tag" href="http://www.technorati.com/tag/work" title="Link to Technorati Tag category for work">work</a>, <a rel="tag" href="http://www.technorati.com/tag/design" title="Link to Technorati Tag category for design">design</a>, <a rel="tag" href="http://www.technorati.com/tag/ipod" title="Link to Technorati Tag category for ipod">ipod</a>, <a rel="tag" href="http://www.technorati.com/tag/audi" title="Link to Technorati Tag category for audi">audi</a>, <a rel="tag" href="http://www.technorati.com/tag/art" title="Link to Technorati Tag category for art">art</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.megatao.com/think-again/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

