<?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>WPNomics</title>
	<atom:link href="http://wpnomics.com/feed" rel="self" type="application/rss+xml" />
	<link>http://wpnomics.com</link>
	<description>Wordpress Tips and Tricks, Troubleshooting and How To</description>
	<lastBuildDate>Thu, 10 Jun 2010 13:45:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Remove &#8220;View all posts filed under&#8221; In WordPress</title>
		<link>http://wpnomics.com/how-to-remove-view-all-posts-filed-under-in-wordpress.html</link>
		<comments>http://wpnomics.com/how-to-remove-view-all-posts-filed-under-in-wordpress.html#comments</comments>
		<pubDate>Thu, 10 Jun 2010 13:45:33 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[wp_list_categories]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=21</guid>
		<description><![CDATA[
			
				
			
		
wp_list_categories() will add &#8220;View all posts filed under&#8221; in front of category name as title attribute. My clients asked me to remove those prefix because it looked funny 

Here is a simple script to do it and keep your category title attribute clean without touching WordPress core file.
[php]
$categories = wp_list_categories(&#8216;echo=0&#8242;);
$categories = preg_replace(&#8216;/View all posts filed [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-remove-view-all-posts-filed-under-in-wordpress.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-remove-view-all-posts-filed-under-in-wordpress.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="wp_list_categories()" href="http://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a> will add &#8220;View all posts filed under&#8221; in front of category name as title attribute. My clients asked me to remove those prefix because it looked funny <img src='http://wpnomics.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<span id="more-21"></span><br />
Here is a simple script to do it and keep your category title attribute clean without touching WordPress core file.<br />
[php]<br />
$categories = wp_list_categories(&#8216;echo=0&#8242;);<br />
$categories = preg_replace(&#8216;/View all posts filed under /&#8217;,&#8221;,$categories);<br />
echo $categories;<br />
[/php]</p>
<p>That&#8217;s it. Of course you can add function arguments on wp_list_categories but don&#8217;t forget to set &#8220;echo=0&#8243;.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/how-to-remove-view-all-posts-filed-under-in-wordpress.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Disable WordPress Post Revisions</title>
		<link>http://wpnomics.com/how-to-disable-wordpress-post-revisions.html</link>
		<comments>http://wpnomics.com/how-to-disable-wordpress-post-revisions.html#comments</comments>
		<pubDate>Wed, 21 Apr 2010 22:21:27 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[post revisions]]></category>
		<category><![CDATA[wordpress configuration]]></category>
		<category><![CDATA[wp-config.php]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=19</guid>
		<description><![CDATA[
			
				
			
		
Since WordPress 2.6, we have a post revisions each time we edit a post. This feature maybe useful if you have more than one blog author or if you really want to keep track of your post revisions. If you think this feature is annoying, you can turn it off by adding the following code [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-disable-wordpress-post-revisions.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-disable-wordpress-post-revisions.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Since WordPress 2.6, we have a post revisions each time we edit a post. This feature maybe useful if you have more than one blog author or if you really want to keep track of your post revisions. If you think this feature is annoying, you can turn it off by adding the following code in <strong>wp-config.php</strong>.<span id="more-19"></span></p>
<p>[php]</p>
<p>define(&#8216;WP_POST_REVISIONS&#8217;, false);</p>
<p>[/php]</p>
<p>It will be better if you set this thing just after setting up your blog. If you add this code after you have several posts (that are creating post revisions), you can optionally delete those post revisions using this SQL query:</p>
<p>[sql]</p>
<p>DELETE a,b,c<br />
FROM wp_posts a<br />
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)<br />
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)<br />
WHERE a.post_type = &#8216;revision&#8217;<br />
[/sql]</p>
<p>Of you course you can run this query from phpMyAdmin or any MySQL database manager.</p>
<p>I think WordPress should add this option on their next release, instead of hard-coded in wp-config.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/how-to-disable-wordpress-post-revisions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Solve WordPress Blank Page</title>
		<link>http://wpnomics.com/how-to-solve-wordpress-blank-page.html</link>
		<comments>http://wpnomics.com/how-to-solve-wordpress-blank-page.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 04:19:44 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=18</guid>
		<description><![CDATA[
			
				
			
		
I just moved my client&#8217;s website to another hosting. Everything is fine in the previous web hosting as well as in localhost, but it gave me a blank homepage. The weird thing is that all pages are accessible except home/index page.

Disabling plugins and change it to default theme still gave me a blank page, so [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-solve-wordpress-blank-page.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-solve-wordpress-blank-page.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I just moved my client&#8217;s website to another hosting. Everything is fine in the previous web hosting as well as in localhost, but it gave me a blank homepage. The weird thing is that all pages are accessible except home/index page.</p>
<p><span id="more-18"></span></p>
<p>Disabling plugins and change it to default theme still gave me a blank page, so I decided to send a ticket support. Just after it, I noticed that there is an <strong>index.html</strong> in the root folder. Deleting this file  solved my problem.</p>
<p>If you got a blank homepage in your wordpress site but can access other pages, then you should check any <strong>index</strong> file in your wordpress folder. Natively some servers will read index.html first rather than index.php.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/how-to-solve-wordpress-blank-page.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Recover Localhost Wordpress Admin Password</title>
		<link>http://wpnomics.com/how-to-recover-localhost-wordpress-admin-password.html</link>
		<comments>http://wpnomics.com/how-to-recover-localhost-wordpress-admin-password.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:25:23 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[wordpress table]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=13</guid>
		<description><![CDATA[
			
				
			
		
Installing wordpress in localhost is an effective way for developing wordpress powered website. It saves time for not doing FTP just to test latest code update, but it will be a disaster if you forgot wordpress admin password and your system doesn&#8217;t have a mail transfer agent to deliver email.
Wordpress create a random admin password [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-recover-localhost-wordpress-admin-password.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-recover-localhost-wordpress-admin-password.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Installing wordpress in localhost is an effective way for developing wordpress powered website. It saves time for not doing FTP just to test latest code update, but it will be a disaster if you forgot wordpress admin password and your system doesn&#8217;t have a mail transfer agent to deliver email.</p>
<p>Wordpress create a random admin password during its installation and you have to remember it (I never remember it, just copy and paste it) in order to login to wordpress dashboard. Wordpress will notify you to change the password once you are logged in.<span id="more-13"></span></p>
<p>If you suddenly forget the admin password, the easiest step is to use phpMyAdmin to create new password. I am using XAMPP so here are the steps to recover your wordpress password:</p>
<ol>
<li>Login to phpMyAdmin (eg: http://localhost/phpmyadmin) and enter your database username and password</li>
<li>Point to your wordpress database and browse wordpress users table (tableprefix_users)<a href="http://wpnomics.com/wp-content/uploads/capt_737.jpg"><img class="alignnone size-medium wp-image-14" title="capt_737" src="http://wpnomics.com/wp-content/uploads/capt_737-299x72.jpg" alt="Browse Table" width="299" height="72" /></a></li>
<li>Just click the edit icon for selected user to open the edit form</li>
<li>Select MD5 function in user_pass field and enter new password for the user<a href="http://wpnomics.com/wp-content/uploads/capt_739.jpg"><img class="alignnone size-medium wp-image-15" title="capt_739" src="http://wpnomics.com/wp-content/uploads/capt_739-300x75.jpg" alt="Edit Password" width="300" height="75" /></a></li>
<li>Klik <strong>Go</strong> to update the field.</li>
</ol>
<p>That&#8217;s all. Next time, better to keep your password memorable. <img src='http://wpnomics.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/how-to-recover-localhost-wordpress-admin-password.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Avoid Wordpress Theme CSS Cache</title>
		<link>http://wpnomics.com/how-to-avoid-wordpress-theme-css-cache.html</link>
		<comments>http://wpnomics.com/how-to-avoid-wordpress-theme-css-cache.html#comments</comments>
		<pubDate>Fri, 26 Mar 2010 02:07:33 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=9</guid>
		<description><![CDATA[
			
				
			
		
When developing WordPress powered website for my clients (mostly in remote sites), I have to make sure that they always get  the latest version of updated WordPress theme. Proxy server sometimes gives problem that is due to its cache on CSS files.
There are several alternative to solve this problem. Bypassing proxy server can be tricky [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-avoid-wordpress-theme-css-cache.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhow-to-avoid-wordpress-theme-css-cache.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>When developing WordPress powered website for my clients (mostly in remote sites), I have to make sure that they always get  the latest version of updated WordPress theme. Proxy server sometimes gives problem that is due to its cache on CSS files.</p>
<p>There are several alternative to solve this problem. <strong>Bypassing proxy server</strong> can be tricky but will not work if client is behind transparent proxy. <a href="http://www.studionashvegas.com/2009/05/04/tired-of-refreshing-your-css-everytime-you-make-a-change/">Mark Jaquith</a> did the <strong>following code</strong> and added it to the header.php</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;/style.css?v=&lt;?php echo filemtime(TEMPLATEPATH . &#8216;/style.css&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen, projection&#8221; /&gt;</p>
<p>If you prefer to use a plugin,  <strong><a href="http://wordpress.org/extend/plugins/css-cache-buster/">CSS Cache Buster</a></strong> is available to save your days.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/how-to-avoid-wordpress-theme-css-cache.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Here we go.. WPNomics.com</title>
		<link>http://wpnomics.com/here-we-go-wpnomics-com.html</link>
		<comments>http://wpnomics.com/here-we-go-wpnomics-com.html#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:13:24 +0000</pubDate>
		<dc:creator>WPNomics</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://wpnomics.com/?p=4</guid>
		<description><![CDATA[
			
				
			
		
Wordpress + Economics = WPNomics. But please do not expect much that this blog will talk about making money online.
I am so passionated in WordPress because of its simplicity and the &#8220;power&#8221; of course. I started to work with WordPress since year 2006, but it was in WordPress.com. My very first project for self hosting [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwpnomics.com%2Fhere-we-go-wpnomics-com.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwpnomics.com%2Fhere-we-go-wpnomics-com.html&amp;source=WPNomics&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Wordpress + Economics = WPNomics</strong>. But please do not expect much that this blog will talk about making money online.</p>
<p>I am so passionated in WordPress because of its simplicity and the &#8220;power&#8221; of course. I started to work with WordPress since year 2006, but it was in WordPress.com. My very first project for self hosting wordpress was a <a title="Indonesia Furniture Directory" href="http://indonesia-furniture-exporters.com">furniture directory</a> for Indonesian exporter and less than 3 months this web sent me web development project.</p>
<p>Almost all of my clients are using wordpress now. It&#8217;s the reason why I choose WPNomics.com. WordPress web projects contributed alot it my economics aspect.</p>
<p>Here we go.. WPNomics.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpnomics.com/here-we-go-wpnomics-com.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

