<?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>Fahd Murtaza&#187; Wordpress</title>
	<atom:link href="http://www.fahdmurtaza.com/myblog/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fahdmurtaza.com/myblog</link>
	<description>Portfolio &#38; Blog</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:47:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WordPress: Restricting results by pages and posts on search pages</title>
		<link>http://www.fahdmurtaza.com/myblog/2011/04/11/wordpress-restricting-pages-and-posts-based-search.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2011/04/11/wordpress-restricting-pages-and-posts-based-search.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 14:02:41 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2011/04/11/wordpress-restricting-pages-and-posts-based-search.html</guid>
		<description><![CDATA[Sometimes you want to change the way wordpress search works, for example you want it to force to search pages only or just posts. The code for that would be something like this //Search only pages function is_type_page() { global $post; if ($post-&#62;post_type == &#039;page&#039;) { return true; } else { return false; }} //Search [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2011%2F04%2F11%2Fwordpress-restricting-pages-and-posts-based-search.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2011%2F04%2F11%2Fwordpress-restricting-pages-and-posts-based-search.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Sometimes you want to change the way wordpress search works, for example you want it to force to search pages only or just posts. The code for that would be something like this</p>
<pre class="brush: php">
//Search only pages
function is_type_page() {
global $post;
if ($post-&gt;post_type == &#039;page&#039;) {
return true;
} else {
return false;
}}

//Search only posts
function is_type_post() {
global $post;
if ($post-&gt;post_type == &#039;post&#039;) {
return true;
} else {
return false;
}}
</pre>
<p>Then in the search page, i.e search.php just use this code</p>
<pre class="brush: php">while ( have_posts() ) : the_post();
if (is_type_post()) continue;
</pre>
<p>Above code will restrict search to the pages only. Similarly you can restrict pages to be excluded from search with the following code</p>
<pre class="brush: php">while ( have_posts() ) : the_post();
if (is_type_page()) continue;</pre>
<p>Hope that helps <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2011%2F04%2F11%2Fwordpress-restricting-pages-and-posts-based-search.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2011/04/11/wordpress-restricting-pages-and-posts-based-search.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I am on home page of oDesk, feels great</title>
		<link>http://www.fahdmurtaza.com/myblog/2009/03/17/i-am-on-home-page-of-odesk-feels-great.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2009/03/17/i-am-on-home-page-of-odesk-feels-great.html#comments</comments>
		<pubDate>Tue, 17 Mar 2009 04:33:55 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[expert]]></category>
		<category><![CDATA[fahd]]></category>
		<category><![CDATA[Fahd Murtaza]]></category>
		<category><![CDATA[murtaza]]></category>
		<category><![CDATA[oDesk]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=571</guid>
		<description><![CDATA[Hi guys I am feeling good right now. Have been working on oDesk from Feb 17, 2009. And its good you get paid on hourly basis. I like oDesk the most among freelancing sites I have worked on. Anyhow, I took a few screen shots to show you that I was once featured on home [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2009%2F03%2F17%2Fi-am-on-home-page-of-odesk-feels-great.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2009%2F03%2F17%2Fi-am-on-home-page-of-odesk-feels-great.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=expert,fahd,Fahd+Murtaza,murtaza,oDesk,PHP,Portfolio,Wordpress&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi guys</p>
<p>I am feeling good right now. Have been working on oDesk from Feb 17, 2009. And its good you get paid on hourly basis. I like oDesk the most among freelancing sites I have worked on. Anyhow, I took a few screen shots to show you that I was once featured on home page on oDesk.</p>
<p><a href="http://www.odesk.com/users/~~869cd6b2b81d3b45"><img class="alignnone size-medium wp-image-575" title="Fahd Murtaza featured on home page of odesk" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2009/03/fahd-murtaza-featured-on-home-page-of-odesk-292x300.png" alt="" width="292" height="300" /></a></p>
<p><span id="more-571"></span></p>
<div id="attachment_574" class="wp-caption alignnone" style="width: 310px"><a href="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2009/03/tests.png"><img class="size-medium wp-image-574" title="oDesk Tests passed by Fahd Murtaza" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2009/03/tests-300x131.png" alt="Fahd Murtaza's Passed Expert Rating Tests" width="300" height="131" /></a><p class="wp-caption-text">Fahd Murtaza</p></div>
<div id="attachment_572" class="wp-caption alignnone" style="width: 310px"><a href="http://www.odesk.com/users/~~869cd6b2b81d3b45"><img class="size-medium wp-image-572" title="Profile Overview" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2009/03/profile-overview-300x131.png" alt="My profile overview on oDesk" width="300" height="131" /></a><p class="wp-caption-text">My profile overview on oDesk</p></div>
<div id="attachment_573" class="wp-caption alignnone" style="width: 310px"><a href="http://www.odesk.com/users/~~869cd6b2b81d3b45"><img class="size-medium wp-image-573" title="Resume Profile on oDesk" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2009/03/profile-resume-300x131.png" alt="My Resume Profile on oDesk" width="300" height="131" /></a><p class="wp-caption-text">My Resume Profile on oDesk</p></div>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2009%2F03%2F17%2Fi-am-on-home-page-of-odesk-feels-great.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2009/03/17/i-am-on-home-page-of-odesk-feels-great.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo Shortcuts</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/09/09/yahoo-shortcuts.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/09/09/yahoo-shortcuts.html#comments</comments>
		<pubDate>Tue, 09 Sep 2008 07:31:55 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=452</guid>
		<description><![CDATA[As you type the content for your blog post, this plugin looks for Flickr Photos, Maps to any locations that you might mention in the post, any products that are listed or even related news to your blogs post. If your content regularly mentions some companies regularly, Yahoo shortcuts can bring up latest financial information [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F09%2F09%2Fyahoo-shortcuts.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F09%2F09%2Fyahoo-shortcuts.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=plugin,shortcuts,Wordpress,yahoo&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><div id="attachment_453" class="wp-caption alignleft" style="width: 310px"><a href="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/09/yahoo-shortcuts.jpg"><img class="size-medium wp-image-453" title="Yahoo Shortcuts" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/09/yahoo-shortcuts-300x182.jpg" alt=" Enhance your blog posts with Yahoo! Shortcuts." width="300" height="182" /></a><p class="wp-caption-text"> Enhance your blog posts with Yahoo! Shortcuts.</p></div>As you type the content for your blog post, this plugin looks for Flickr Photos, Maps to any locations that you might mention in the post, any products that are listed or even related news to your blogs post.</p>
<p>If your content regularly mentions some companies regularly, Yahoo shortcuts can bring up latest financial information related to that company.</p>
<p>Relevant search results would also come up for certain terms like in the image shown UNIX Pipes would pop up a Yahoo shortcut with relevant contextual search results. Some bloggers may find some shortcuts annoying and irrelevant to their blogs content, but some might really find it useful. It all depends on what you blog about.<span id="more-452"></span></p>
<p>However the best feature I think is the auto detection of relevant images to your blog post. Images can really enlighten the posts and make them more interesting.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F09%2F09%2Fyahoo-shortcuts.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/09/09/yahoo-shortcuts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress; the new cool version 2.5 enjoyyy</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/03/30/wordpress-the-new-cool-version-25-enjoyyy.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/03/30/wordpress-the-new-cool-version-25-enjoyyy.html#comments</comments>
		<pubDate>Sun, 30 Mar 2008 21:54:23 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging engine]]></category>
		<category><![CDATA[clean look]]></category>
		<category><![CDATA[cool features]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[fantastico]]></category>
		<category><![CDATA[latest]]></category>
		<category><![CDATA[latest release]]></category>
		<category><![CDATA[neat look]]></category>
		<category><![CDATA[publishing platform]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/03/30/wordpress-the-new-cool-version-25-enjoyyy.html</guid>
		<description><![CDATA[Yeah as always I am one complete day late to know about the new release of wordpress. Its really cool. I just downloaded and installed it. As its famous for its 5 minutes install; it has great new features and a neat and clean interface, I think a hundred times better than the previous version [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F30%2Fwordpress-the-new-cool-version-25-enjoyyy.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F30%2Fwordpress-the-new-cool-version-25-enjoyyy.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=blog,blogging+engine,clean+look,cool+features,Cpanel,fantastico,latest,latest+release,neat+look,publishing+platform,Wordpress,WP&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Yeah as always I am one complete day late to know about the new release of wordpress. Its really cool. I just downloaded and installed it. As its famous for its 5 minutes install; it has great new features and a neat and clean interface, I think a hundred times better than the previous version thats 2.3 if I am not wrong (2.3.3), yeah I just checked as I am writing this post on the old platform and I just needed to scroll down this post window (my wordpress blog is an auto install by Fantastico provided by my host in Cpanel)</p>
<p>Anyhow right now I am playing with the latest version (2.5)  and its simply awesome.</p>
<p>See the difference. Its just obvious. Its on full page for this blog post.<span id="more-294"></span></p>
<p><img src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/03/image002.jpg" alt="Old version wordpress 2.3.3" /></p>
<p>The Old version of wordpress i.e. 2.3.3</p>
<p><img src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/03/image004.jpg" alt="New wordpress 2.5 posting a new blog post" /></p>
<p>The new cool thing  wordpress i.e. 2.5</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F30%2Fwordpress-the-new-cool-version-25-enjoyyy.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/03/30/wordpress-the-new-cool-version-25-enjoyyy.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Get recent posts within a dynamic wordpress content page or post from 2 different categories</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html#comments</comments>
		<pubDate>Sat, 15 Mar 2008 07:14:16 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[6seconds.org]]></category>
		<category><![CDATA[fahd]]></category>
		<category><![CDATA[Freedman]]></category>
		<category><![CDATA[Josh]]></category>
		<category><![CDATA[murtaza]]></category>
		<category><![CDATA[stuff]]></category>
		<category><![CDATA[templating]]></category>
		<category><![CDATA[themeing]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html</guid>
		<description><![CDATA[OK I usually work on the wordpress stuff and do all the fancy things with wordpress on these two Blogs of Josh Freedman His press room at http://www.6seconds.org/press/ His blog is at http://6seconds.org/blog/ I spent my times for release and support my plugin. If you like my plugin and enjoy the support, do consider to [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F15%2Fwordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F15%2Fwordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=6seconds.org,fahd,Freedman,Josh,murtaza,PHP,Plugins,stuff,templating,themeing,Wordpress&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>OK I usually work on the wordpress stuff and do all the fancy things with wordpress on these two Blogs of Josh Freedman</p>
<p id="pp">His press room at <a href="http://www.6seconds.org/press/" title="Six Seconds helps businesses, schools, communities, and individuals thrive." target="_blank">http://www.6seconds.org/press/</a><br />
His  blog is at  <a href="http://6seconds.org/blog/" target="_blank">http://6seconds.org/blog/</a></p>
<form method="post" action="https://www.paypal.com/cgi-bin/webscr">
<input value="_donations" name="cmd" type="hidden" />
<input value="crutchatl@gmail.com" name="business" type="hidden" />
<input value="Donation - Wp-Multiple Cat Plugin" name="item_name" type="hidden" />
<input value="0" name="no_shipping" type="hidden" />
<input value="1" name="no_note" type="hidden" />
<input value="USD" name="currency_code" type="hidden" />
<input value="0" name="tax" type="hidden" />
<input value="IN" name="lc" type="hidden" />
<input value="PP-DonationsBF" name="bn" type="hidden" />
<input src="https://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif" alt="Make payments with PayPal - it's fast, free and secure!" name="submit" border="0" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" height="1" width="1" /><br />
</form>
<p>				I spent my times for release and support my plugin. If you like my plugin and enjoy the support, do consider to make a donation to me. Thank you <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> . I am available for hire too <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can view the plugin working at his press room at <a href="http://www.6seconds.org/press/" title="Six Seconds helps businesses, schools, communities, and individuals thrive." target="_blank">http://www.6seconds.org/press/</a></p>
<p>Its showing the 2 different categories&#8217; recent posts. The number of the posts can be defined in the plugin&#8217;s only php file.<br />
<a href="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/03/image003.jpg" title="Wordpress Plugin: Get recent posts within a dynamic wordpress content page or post"><img src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/03/image003.jpg" alt="Wordpress Plugin: Get recent posts within a dynamic wordpress content page or post" /></a></p>
<p><strong> OK how to do such thing?</strong></p>
<p>I am going to release a modified generic open source version if Josh allows me.</p>
<p><font color="#ff0000">Update</font> 1:33 AM : Yeah he allows me <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  so here is the download material (on full post page)..<span id="more-276"></span></p>
<p>Downloads:</p>
<p>Version 0.5  (RAR):   <a href="http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html/wordpress-plugin-get-recent-posts-from-2-categories/" rel="attachment wp-att-279" title="Wordpress Plugin: Get recent posts from 2 categories">Click here to download .rar of WordPress Plugin: Get recent posts from two categories</a></p>
<p>Version 0.5  (RAR):   <a href="http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html/wordpress-plugin-get-recent-posts-from-2-categories-2/" rel="attachment wp-att-280" title="Wordpress Plugin: Get recent posts from 2 categories">Click here to download .zip of WordPress Plugin: Get recent posts from two categories</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F15%2Fwordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/03/15/wordpress-plugin-get-recent-posts-within-a-dynamic-wordpress-content-page-or-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you social on the web?</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/02/29/are-you-social-on-the-web.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/02/29/are-you-social-on-the-web.html#comments</comments>
		<pubDate>Fri, 29 Feb 2008 08:10:08 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[2.0]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[fickr]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Google Calendar]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sociable]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[social netwroking]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wp-contents/plugins]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/02/29/are-you-social-on-the-web.html</guid>
		<description><![CDATA[Do you wanna be social? Are you social on the web? Is your website in accordance with the &#8220;social&#8221; requirements as laid out by the web 2.0 standard. Do you want to say &#8220;yeah&#8221; but are afraid of saying it as it might be wrong as you still dont know what exactly 2.0 is. OK, [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F29%2Fare-you-social-on-the-web.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F29%2Fare-you-social-on-the-web.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=2.0,calendar,fickr,google,Google+Calendar,networking,plugin,Plugins,sociable,social,social+netwroking,web,Wordpress,wp-contents%2Fplugins&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Do you wanna be social? Are you social on the web? Is your website in accordance with the <strong>&#8220;social&#8221;</strong> requirements as laid out by the web 2.0 standard. Do you want to say <strong>&#8220;yeah&#8221; </strong>but are afraid of saying it as it might be wrong as you still dont know what exactly 2.0 is. OK, let me add something (thats not new off course but clarifies a little about the social aspect of the web).  The web 2.0 is about the usability factor of the web. Sites like <a href="http://www.flickr.com" title="Flickr" target="_blank">Flickr</a> and <a href="http://www.google.com/calendar" title="Google Calendar an example of web 2.0" target="_blank">Google calendar</a> are a very good example of usability. Both have social factors about them. Like on <a href="http://www.flickr.com" title="Flickr" target="_blank">Flickr</a>, people can comment on your photos, photos that you want to share. Also you can post photos to your blog right from your <a href="http://www.flickr.com" title="Flickr" target="_blank">Flickr</a> account and there are dozens of good services that can be integrated with Flickr through an API provided by <a href="http://www.flickr.com" title="Flickr" target="_blank">Flickr</a>. It uses AJAX for making it more usable but yeah the Social Factor like submitting your photos to public groups of similar interests make it<span id="more-262"></span> more approachable by the users of the site.</p>
<p>This <a href="http://www.flickr.com" title="Flickr" target="_blank">Flickr</a> example is just to mention how social networking helps people to collaborate and find the things of their interests. Social networks like <a href="http://www.orkut.com" title="Orkut" target="_blank">Orkut</a>, <a href="http://www.facebook.com" title="Facebook" target="_blank">Facebook</a>, <a href="http://www.myspace.com" title="mySpace" target="_blank">MySpace</a> and lots more are being used by Millions of Surfers on daily basis to enjoy the <strong><em>Social Web</em></strong>.</p>
<p>Another popular web 2.0 application is blogging engines. Yeah you are reading this text on a blog too that is off course my personal one. What if you want to enjoy the social features of the web for your blog. You wanna be heard right? So use social bookmarking. WordPress blogging engine, which runs most of this website is a great tool for blogging, in fact for content publishing so what if you like to use social bookmarking for your blog. There are several plugins available for social bookmarking but yeah as usual I am writing about a simple and usable one.</p>
<p>Use</p>
<h1 style="font-weight: normal">Sociable</h1>
<p><a title="introduction" name="introduction"></a> <a title="introduction" name="introduction"></a>Social bookmarking sites allow web surfers to save, catalog, and share interesting pages they find online. The Sociable plugin appends links for your readers to use those sites to the end of each of your blog’s posts, increasing your potential audience.</p>
<p><a title="introduction" name="introduction"></a>If you’d like to keep up with Sociable development, you can <a href="http://push.cx/tag/sociable">read the tagged posts on this blog</a> (<a href="http://push.cx/tag/sociable/feed">feed</a>). Or just read all of this blog, I swear it’s so amazing you’ll be sneezing rainbows.</p>
<h4><a title="download" name="download"></a>Download, Upgrading, Installation</h4>
<p><span style="color: green; font-size: 150%; font-weight: bold"><a href="http://push.cx/wp-content/uploads/2007/02/sociable-2.0.zip">Download Sociable 2.0</a></span> (<a href="http://" target="_blank">released</a> 2007-02-02)</p>
<p>To upgrade, first deactivate Sociable and remove the sociable directory, then follow the install instructions.</p>
<p>Read the rest about Sociable <a href="http://push.cx/sociable" title="Sociable Plugin for WordPress" target="_blank">here</a>.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F29%2Fare-you-social-on-the-web.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/02/29/are-you-social-on-the-web.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a new project &#8220;WP Theme Agent&#8221;</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/01/17/starting-a-new-project-wp-theme-agent.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/01/17/starting-a-new-project-wp-theme-agent.html#comments</comments>
		<pubDate>Thu, 17 Jan 2008 09:12:13 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[A theme a day]]></category>
		<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP Theme Agent]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[fresh]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/01/17/starting-a-new-project-wp-theme-agent.html</guid>
		<description><![CDATA[Check my latest quote &#8220;A wordpress theme a day doesn&#8217;t keeps a geek away! &#8220;, yeah off course to serve my fellow wordpress community and my loving wordpress blogging engine. All the wordpress geeks a very well aware of the fact that how cool wordpress theming can be, I would rather boast there is no [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F17%2Fstarting-a-new-project-wp-theme-agent.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F17%2Fstarting-a-new-project-wp-theme-agent.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=A+theme+a+day,day,fresh,one,open,opensource,PHP,resources,source,Themes,Wordpress,WP&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Check my latest quote &#8220;A wordpress theme a day doesn&#8217;t keeps  a geek away! &#8220;, yeah off course to serve my fellow wordpress community and my loving wordpress blogging engine. All the wordpress geeks a very well aware of the fact that how cool wordpress theming can be, I would rather boast there is no better theming engine for blogs out there. Anyone with normal PHP understanding can easily customize a theme for their blog or even get a pre-done template and convert it into wordpress theme with few easy steps.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F17%2Fstarting-a-new-project-wp-theme-agent.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/01/17/starting-a-new-project-wp-theme-agent.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just finished up Press and Blog on www.6seconds.org</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/01/03/just-finished-up-press-and-blog-on-www6secondsorg.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/01/03/just-finished-up-press-and-blog-on-www6secondsorg.html#comments</comments>
		<pubDate>Thu, 03 Jan 2008 09:11:16 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[6seconds.org]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[seconds]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/01/03/just-finished-up-press-and-blog-on-www6secondsorg.html</guid>
		<description><![CDATA[Just finished the wordpress theme called 6seconds the links to respective themed wordpress blogs are Six Seconds Press Room and their 6seconds.org Blog]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F03%2Fjust-finished-up-press-and-blog-on-www6secondsorg.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F03%2Fjust-finished-up-press-and-blog-on-www6secondsorg.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=6seconds.org,development,seconds,Themes,web,Wordpress&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Just finished the wordpress theme called 6seconds</p>
<p><a href="http://www.fahdmurtaza.com/myblog/2008/01/03/just-finished-up-press-and-blog-on-www6secondsorg.html/156/" rel="attachment wp-att-156" title="Wordpress theme by Fahd Murtaza"><img src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2008/01/6seconds-org.thumbnail.jpg" alt="Wordpress theme by Fahd Murtaza" /></a></p>
<p>the links to respective themed wordpress blogs are</p>
<p><a href="http://www.6seconds.org/press/" title="Six Seconds Press Room " target="_blank"> Six Seconds Press Room</a>  and their <a href="http://www.6seconds.org/blog/" title="Six Seconds Blog EQ Planet" target="_blank">6seconds.org Blog</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F01%2F03%2Fjust-finished-up-press-and-blog-on-www6secondsorg.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/01/03/just-finished-up-press-and-blog-on-www6secondsorg.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization: Five WordPress Plugins To Make It Easier</title>
		<link>http://www.fahdmurtaza.com/myblog/2007/12/20/search-engine-optimization-five-wordpress-plugins-to-make-it-easier.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2007/12/20/search-engine-optimization-five-wordpress-plugins-to-make-it-easier.html#comments</comments>
		<pubDate>Thu, 20 Dec 2007 14:03:51 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2007/12/20/search-engine-optimization-five-wordpress-plugins-to-make-it-easier.html</guid>
		<description><![CDATA[Letting the world know about your blog is one of the trickier aspects of starting a new blog or getting people notice one that you’ve been working on. This is so-called search engine optimization or SEO. Google is the most obvious target for these efforts as it dominates the search market and is the default [...]]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F12%2F20%2Fsearch-engine-optimization-five-wordpress-plugins-to-make-it-easier.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F12%2F20%2Fsearch-engine-optimization-five-wordpress-plugins-to-make-it-easier.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=engine,google,optimization,Plugins,search,search+engines,SEO,Wordpress&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Letting the world know about your blog is one of the trickier aspects of starting a new blog or getting people notice one that you’ve been working on. This is so-called search engine optimization or SEO. <a href="http://www.google.com/">Google</a> is the most obvious target for these efforts as it dominates the search market and is the default search engine for popular browsers like <a href="http://www.firefox.com/">Firefox</a>. Moreover of you open up the browser and you have nothing particular in mind, the most probable site you type in address bar is google.com yeah I know it <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . Google rules the SEO tech world and everybosy wants to be in google SERPS (Search engine result pages).  Working around the rules that keep Google and other search engines relevant is arcane at best and at worst will result in your sites being demoted in relevance or delisted entirely. Yep that happens. I have learnt it from my best and worst SEO experiences. There are many theorists and companies that indulge in this sort of speculation and some are more successful than others at nudging search results in the ways they desire them to.</p>
<p>Well guys (not to mention the girls) ,  SEO is what can be called the  &#8221; The <strong>most desirable</strong> feature/quality (whatever you name it) of a website. To me there are two points about SEO.</p>
<ul>
<li> More and more incoming links to your blog/site.</li>
<li>neat clean directory like URLs for your pages.</li>
<li>No redirections.</li>
<li>Table less structure to ensure search engines see the text version of your site easily and dont get confused with the text formating on your sit. ( Yeah its important!)</li>
<li>Quality /niche oriented / keyword specific content on a page.</li>
</ul>
<p><span id="more-99"></span></p>
<p>The general rule is that the better content your site contains then the more highly ranked in search results it will become. The tricky part is how to relay that information to the search engine crawlers and robots without getting yourself into hot water during the undertaking. How does one accomplish this effectively without risking negative repercussions? This is where WordPress plugins again become indispensable as many are set up to <em>safely</em> optimize your ranking without bending or breaking rules to try to cheat the structure entirely.</p>
<p>Here are a few examples of plugins you can confidently use for that pursuit:</p>
<p>1. <a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/">All In One SEO Pack</a>. This plugin does a huge amount of work in making your blog more search engine friendly. One of its best features is the ability to create META tags in all of your posts, even the ones made before the plugin was installed. You can also manually toggle the keywords for each post or page or create a list from the content of your categories. Overall this plugin gives you a very high degree of control over how <em>each</em> post or page is presented to a potential search engine spider without offering risky options and even giving users the opportunity to remove duplicate content before the site is indexed. This plugin would be the first to install or the only if you’re looking for an all inclusive solution that adequately handles nearly all of your SEO needs.</p>
<p>2. <a href="http://urbangiraffe.com/plugins/headspace2/">Headspace2</a>. Headspace2 also deals with tagging and a myriad of other SEO tasks but it has some extras that make it worth investigating. One of its most powerful features is its ability to make per page/post changes like enabling otherwise disabled plugins on a per post basis. It can also theme specific pages with very little effort on the admin side. Headspace2 can also handle things like nested keywords and cleaning up affiliate links.</p>
<p>3. <a href="http://wordpress.org/extend/plugins/seo-slugs/">SEO Slugs</a>. This plugin does a simple job but one that is pretty vital to SEO work: it removes common words like conjunctions from post slugs to make them more search engine friendly. It can make a post that initially looks like: a-search-engine-is-an-indispensable-friend into search-engine-is-indispensable-friend. While it may appear as line trash to the human eye, spiders unaware of the subtleties of English grammar and tense will eat these titles up.</p>
<p>4. <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google XML Sitemaps Generator</a>. This fella will generate a map of all of the pages on your WP site in a manner that allows more efficient crawling by not only Google but other engines that adopted the XML sitemap protocol including <a href="http://www.yahoo.com/">Yahoo!</a> and <a href="http://www.ask.com/">Ask.com</a>. This is a great idea because it utilizes a protocol approved by the big guns instead of trickery.</p>
<p>5. <a href="http://www.askapache.com/seo/wp-plugin-search-engine-verify.html">AskApache Search Engine Verify</a>. This plugin allows the creation of verification codes from both Yahoo! and Google to enhance the validity of your site and to assist in correcting past wrongdoings if you’ve recently purchased a domain that may have gotten in trouble with either engine prior to your ownership. This becomes more important when you’re purchasing domains with the intent to have them appear more relevant to the big boys: it is likely that someone had the same idea and possibly gave your new home a criminal record. You lose nothing either way and have a lot to gain by adding this one to your site.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F12%2F20%2Fsearch-engine-optimization-five-wordpress-plugins-to-make-it-easier.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2007/12/20/search-engine-optimization-five-wordpress-plugins-to-make-it-easier.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Multi Column Author List WordPress Plugin</title>
		<link>http://www.fahdmurtaza.com/myblog/2007/06/28/multi-column-author-list-wordpress-plugin.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2007/06/28/multi-column-author-list-wordpress-plugin.html#comments</comments>
		<pubDate>Thu, 28 Jun 2007 11:41:50 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Blogging Engines]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2007/06/28/multi-column-author-list-wordpress-plugin.html</guid>
		<description><![CDATA[Hi everyone! I thought its a better idea to release my new wordpress plugin called &#8220;Multi Column Author List&#8221;. Give it a download and try it on your wordpress customised blogs. I hope it would be useful for many of you! You can download it here. Best Regards, Fahd Murtaza]]></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%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F06%2F28%2Fmulti-column-author-list-wordpress-plugin.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F06%2F28%2Fmulti-column-author-list-wordpress-plugin.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi everyone! I thought its a better idea to release my new wordpress plugin called  <strong>&#8220;Multi Column Author List&#8221;. </strong>Give it a download and try it on your wordpress customised blogs. I hope it would be useful for many of you!<span id="more-19"></span></p>
<p>You can download it<a href="javascript;:" title="Will add the download link after few hours"> here. </a></p>
<p>Best Regards,<br />
Fahd Murtaza</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2007%2F06%2F28%2Fmulti-column-author-list-wordpress-plugin.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2007/06/28/multi-column-author-list-wordpress-plugin.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

