<?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>The Analyst &#187; Wordpress</title>
	<atom:link href="http://psyphil.com/bundle/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://psyphil.com</link>
	<description>Being different is a gift, like being normal</description>
	<lastBuildDate>Thu, 25 Feb 2010 08:56:00 +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>How to remove raquo; from wordpress title.</title>
		<link>http://psyphil.com/how-to-remove-raquo-from-wordpress-title/</link>
		<comments>http://psyphil.com/how-to-remove-raquo-from-wordpress-title/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 07:20:03 +0000</pubDate>
		<dc:creator>The Analyst</dc:creator>
				<category><![CDATA[php Programming]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://psyphil.com/?p=86</guid>
		<description><![CDATA[Oh there are two methods to remove raquo; from the title of wordpress posts. 1. Instead of wp_title() in your theme&#8217;s header file (header.php) put echo wp_title(&#8221;,true); This method is the easiest one to do, it just strips off the raquo; inserted by wordpress. 2. Second method is to find that particular file in wp-includes [...]]]></description>
			<content:encoded><![CDATA[<p>Oh there are two methods to remove raquo; from the title of wordpress posts. </p>
<p>1. </p>
<blockquote><p>Instead of <strong>wp_title() </strong> in your theme&#8217;s header file (header.php) put echo wp_title(&#8221;,true);</p></blockquote>
<p>This method is the easiest one to do, it just strips off the raquo; inserted by wordpress.</p>
<p>2. </p>
<blockquote><p>Second method is to find that particular file in wp-includes thats inserting raquo; into title and removing raquo; from it. I have done it in previous versions of wordpress ( haven&#8217;t tried in 2.7) and feeling bit lazy to search for it. Hakuna matata as long as first one serves my purpose.</p></blockquote>
<p>Second one is really an elegant way, try it yourself in your free time. Post a comment if you can spare minutes to tell others.</p>
]]></content:encoded>
			<wfw:commentRss>http://psyphil.com/how-to-remove-raquo-from-wordpress-title/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to show more than 15 posts in wordpress admin&#8217;s edit posts</title>
		<link>http://psyphil.com/how-to-show-more-than-15-posts-in-wordpress-admins-edit-posts/</link>
		<comments>http://psyphil.com/how-to-show-more-than-15-posts-in-wordpress-admins-edit-posts/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 07:10:21 +0000</pubDate>
		<dc:creator>The Analyst</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://psyphil.com/?p=83</guid>
		<description><![CDATA[Find the line wp(&#8220;post_type=post&#38;what_to_show=posts$post_status_q&#38;posts_per_page=15&#38;order=$order&#38;orderby=$orderby&#8221;); Its 805th line in wordpress 2.7, line number might be different in different versions, so better find (CTRL+F) the line of code above in wp-admin/includes/post.php Replace 15 in posts_per_page=15 by some higher number you wish, Lets say 50, the code code after change must look like this wp(&#8220;post_type=post&#38;what_to_show=posts$post_status_q&#38;posts_per_page=50&#38;order=$order&#38;orderby=$orderby&#8221;);]]></description>
			<content:encoded><![CDATA[<p>Find the line</p>
<blockquote><p>wp(&#8220;post_type=post&amp;what_to_show=posts$post_status_q&amp;posts_per_page=15&amp;order=$order&amp;orderby=$orderby&#8221;);</p></blockquote>
<p>Its <strong>805th</strong> line in wordpress <strong>2.7</strong>, line number might be different in different versions, so better find (CTRL+F) the line of code above in <strong>wp-admin/includes/post.php</strong></p>
<p>Replace <strong>15</strong> in <strong>posts_per_page=15</strong> by some higher number you wish, Lets say 50, the code code after change must look like this</p>
<blockquote><p>wp(&#8220;post_type=post&amp;what_to_show=posts$post_status_q&amp;posts_per_page=50&amp;order=$order&amp;orderby=$orderby&#8221;);</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://psyphil.com/how-to-show-more-than-15-posts-in-wordpress-admins-edit-posts/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

