<?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>zeo &#187; WordPress</title>
	<atom:link href="http://zeo.unic.net.my/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeo.unic.net.my</link>
	<description>Safirul Alredha on web, WordPress, K2, Apple, ...</description>
	<lastBuildDate>Thu, 02 Jun 2011 01:31:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Uninstall Option for WordPress theme</title>
		<link>http://zeo.unic.net.my/uninstall-option-for-wordpress-theme/</link>
		<comments>http://zeo.unic.net.my/uninstall-option-for-wordpress-theme/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 06:36:43 +0000</pubDate>
		<dc:creator>zeo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[uninstall]]></category>

		<guid isPermaLink="false">http://zeo.unic.net.my/?p=877</guid>
		<description><![CDATA[Useful uninstall option &#8220;snippet&#8221; for your WordPress theme admin option. Basically, this reverts WordPress to the default theme and removes all theme settings from the database. Change option your_theme with your own: global $wpdb; delete_option('your_theme'); switch_theme('default', 'default'); wp_cache_flush(); wp_redirect('themes.php?activated=true'); exit();]]></description>
			<content:encoded><![CDATA[<p>Useful uninstall option &#8220;snippet&#8221; for your WordPress theme admin option. Basically, this reverts WordPress to the default theme and removes all theme settings from the database. Change option <code>your_theme</code> with your own:</p>
<pre>
global $wpdb;

delete_option('your_theme');
switch_theme('default', 'default');
wp_cache_flush();

wp_redirect('themes.php?activated=true');
exit();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://zeo.unic.net.my/uninstall-option-for-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Comment Form Skip Link</title>
		<link>http://zeo.unic.net.my/wordpress-comment-form-skip-link/</link>
		<comments>http://zeo.unic.net.my/wordpress-comment-form-skip-link/#comments</comments>
		<pubDate>Fri, 09 May 2008 06:28:51 +0000</pubDate>
		<dc:creator>zeo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[skip]]></category>

		<guid isPermaLink="false">http://zeo.unic.net.my/?p=831</guid>
		<description><![CDATA[Skip link (or Skip Navigation link) for comment form is really important when your entry has a lot of comments. But there&#8217;s no point in having one when your comment form is just few pixel away after the entry. This is how you can show the skip link if the comment reach n number of [...]]]></description>
			<content:encoded><![CDATA[<p>Skip link (or Skip Navigation link) for comment form is really important when your entry has a lot of comments. But there&#8217;s no point in having one when your comment form is just few pixel away after the entry.</p>
<p>This is how you can show the skip link if the comment reach <tt>n</tt> number of comments. Example below will make the skip link appear if 1) comment status is open 2) comment count is more and equal to 4.</p>
<ol>
<li>Open your Theme&#8217;s <tt>comments.php</tt> file.</li>
<li>After <code>&lt;?php if ( have_comments() ) : ?&gt;</code> (or anywhere you find suitable) paste these lines:
<pre>
&lt;?php if ( comments_open() &#038;&#038; ( 4 <= get_comments_number()) ) : ?&gt;
	&lt;a href=&quot;#respond&quot;&gt;Skip to comment form&lt;/a&gt;
&lt;?php endif; ?&gt;
</pre>
<p>Example:</p>
<pre>
&lt;h3 id=&quot;comments&quot;&gt;&lt;?php comments_number(&#39;No Responses&#39;, &#39;One Response&#39;, &#39;% Responses&#39; );?&gt; to &amp;#8220;&lt;?php the_title(); ?&gt;&amp;#8221;&lt;/h3&gt;
&lt;?php if ( comments_open() &#038;&#038; ( 4 <= get_comments_number()) ) : ?&gt;
	&lt;a href=&quot;#respond&quot;&gt;Skip to comment form&lt;/a&gt;
&lt;?php endif; ?&gt;
</pre>
<p>Don't forget to style the codes to match your layout.
</li>
<li>Finally, make sure that an element with ID attribute <code>respond</code> is added or assigned. For example:
<pre>
&lt;h3 id=&quot;respond&quot;&gt;Leave a Reply&lt;/h3&gt;
</pre>
<p>Preferably right before the comment form. </p>
<p>Using named anchor (<code>&lt;a name=&quot;respond&quot; id=&quot;respond&quot;&gt;&lt;a/&gt;</code>) is outdated but still possible.
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://zeo.unic.net.my/wordpress-comment-form-skip-link/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Feedless WordPress</title>
		<link>http://zeo.unic.net.my/feedless-wordpress/</link>
		<comments>http://zeo.unic.net.my/feedless-wordpress/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 15:52:29 +0000</pubDate>
		<dc:creator>zeo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://zeo.unic.net.my/?p=828</guid>
		<description><![CDATA[While everyone is trying to increase their RSS / Atom subscribers, this is how you can offer no feed to your readers on your WordPress. Go to Settings &#8594; Reading sub-panel. Under Syndication feeds show the most recent is set to -1 (negative 1) posts.]]></description>
			<content:encoded><![CDATA[<p>While everyone is trying to increase their <abbr title="Really Simple Syndication">RSS</abbr> / Atom subscribers, this is how you can offer <strong>no</strong> feed to your readers on your WordPress.</p>
<ol>
<li>Go to Settings &rarr; Reading sub-panel.</li>
<li>Under Syndication feeds show the most recent is set to <code>-1</code> (negative 1) posts.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://zeo.unic.net.my/feedless-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove blog from WordPress.com Blog Stats?</title>
		<link>http://zeo.unic.net.my/remove-blog-from-wordpresscom-blog-stats/</link>
		<comments>http://zeo.unic.net.my/remove-blog-from-wordpresscom-blog-stats/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 07:53:30 +0000</pubDate>
		<dc:creator>zeo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[wordpress.com]]></category>

		<guid isPermaLink="false">http://zeo.unic.net.my/?p=825</guid>
		<description><![CDATA[I got few self-hosted WordPress blog registered under my WordPress.com account in order to use WordPress.com Stats. Unfortunately, there are blogs that I accidentally added to this account and for that reason I would like to remove these blogs. The problem is how? Deactivating WordPress.com Stats plugins from the blogs doesn&#8217;t help. Even with clearing [...]]]></description>
			<content:encoded><![CDATA[<p>I got few self-hosted WordPress blog registered under my WordPress.com account in order to use <a rel="nofollow" href="http://wordpress.org/extend/plugins/stats/">WordPress.com Stats</a>. Unfortunately, there are blogs that I accidentally added to this account and for that reason I would like to remove these blogs. The problem is how? </p>
<p>Deactivating WordPress.com Stats plugins from the blogs doesn&#8217;t help. Even with clearing the API key brings no luck. I guess doing it manually on your own won&#8217;t work. I&#8217;m trying to figure this one out without sending an email to the folks over at WordPress.com support.</p>
<p>Any ideas?</p>
<p>UPDATE: I&#8217;ve contacted WordPress.com support and they have removed the blog from my Dashboard WordPress.com stats list. But now, it seems that the blog can&#8217;t be added again after it was removed.</p>
]]></content:encoded>
			<wfw:commentRss>http://zeo.unic.net.my/remove-blog-from-wordpresscom-blog-stats/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>tumblelog</title>
		<link>http://zeo.unic.net.my/tumblelog/</link>
		<comments>http://zeo.unic.net.my/tumblelog/#comments</comments>
		<pubDate>Sat, 06 Oct 2007 16:01:45 +0000</pubDate>
		<dc:creator>zeo</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[tumblelog]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://zeo.unic.net.my/?p=861</guid>
		<description><![CDATA[UPDATE: A newer version to support the latest version of WordPress (2.8) will be release soon. If you&#8217;re interested to get an early copy, do shoot me an email. A tumblelog engine / theme for self-hosted WordPress with some bits of microformats love. Only compatible with WordPress 2.6 and below as this is the last [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE</strong>: A newer version to support the latest version of WordPress (2.8) will be release soon. If you&#8217;re interested to get an early copy, do shoot me an email.</p>
<p>A <a rel="nofollow" href="http://en.wikipedia.org/wiki/Tumblelog">tumblelog</a> engine / theme for self-hosted <a rel="nofollow"  href="http://wordpress.org">WordPress</a> with some bits of  microformats love. Only compatible with WordPress 2.6 and below as this is the last update before the major release of  WordPress 2.7.</p>
<p>Totally open source. Hack it apart and send me a patch!</p>
<h3>Features</h3>
<ul>
<li>Custom page to post photo, quote, link, chat and video.</li>
<li>Automatically format each post based on post type.</li>
<li>Automatically resize large image / photo when upload.</li>
<li>microformats hAtom and xFolk friendly.</li>
<li>Theme un-installer.</li>
<li>Added support for sidebar and comment form.</li>
<li>Widgets friendly.</li>
</ul>
<h3>Screenshot</h3>

<a href='http://zeo.unic.net.my/tumblelog/tumblelog-screenshot/' title='tumblelog Screenshot'><img width="150" height="150" src="http://zeo.unic.net.my/wp-content/uploads/2008/11/tumblelog-screenshot-150x150.png" class="attachment-thumbnail" alt="tumblelog Screenshot" title="tumblelog Screenshot" /></a>
<a href='http://zeo.unic.net.my/tumblelog/tumblelog-post-menu/' title='tumblelog Post Menu'><img width="150" height="150" src="http://zeo.unic.net.my/wp-content/uploads/2008/11/tumblelog-post-menu-150x150.png" class="attachment-thumbnail" alt="tumblelog Post Menu" title="tumblelog Post Menu" /></a>
<a href='http://zeo.unic.net.my/tumblelog/tumblelog-theme-options/' title='tumblelog Theme Options'><img width="150" height="150" src="http://zeo.unic.net.my/wp-content/uploads/2008/11/tumblelog-theme-options-150x150.png" class="attachment-thumbnail" alt="tumblelog Theme Options" title="tumblelog Theme Options" /></a>

<h3>Download</h3>
<p><a href="http://zeo.unic.net.my/downloads/tumblelog.zip">tumblelog.zip</a></p>
<h3>Installation</h3>
<ol>
<li>Upload the theme folder to <code>wp-content/themes</code>.</li>
<li>When done, proceed with selecting tumblelog from <strong>Design</strong>.</li>
<li>Create at least one or two category and then assign a unique category to each type of post from <strong>Theme  Options</strong>.</li>
<li>Go to <strong>Write</strong> panel, choose either <strong>Photo</strong>, <strong>Quote</strong>, <strong>Link</strong>,  <strong>Chat</strong>, or <strong>Video</strong> from <strong>Write</strong> submenu and start <em>tumbling</em>.</li>
</ol>
<h3>Support and Questions</h3>
<p>Use the comment form in this entry or <a rel="nofollow" href="http://code.google.com/p/tumblelog/issues/list">http://code.google.com/p/tumblelog/issues/list</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zeo.unic.net.my/tumblelog/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>

