<?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>Mahmood Yaqub</title>
	<atom:link href="http://mahmoodyaqub.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://mahmoodyaqub.com</link>
	<description>Web Developer, SEO Expert, SEM, Online Strategic Analyst</description>
	<lastBuildDate>Sat, 17 Dec 2011 16:18:20 +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>Remove admin bar for WordPress user &amp; subscribers</title>
		<link>http://mahmoodyaqub.com/?p=109</link>
		<comments>http://mahmoodyaqub.com/?p=109#comments</comments>
		<pubDate>Sat, 17 Dec 2011 16:18:20 +0000</pubDate>
		<dc:creator>Mahmood Yaqub</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mahmoodyaqub.com/?p=109</guid>
		<description><![CDATA[To remove wordpress admin bar for users, subscribers, contributors etc add the following code to functions.php somewhere below &#60;?php // disable the admin bar show_admin_bar(false); Alternatively you can go to wp-admin &#62; All Users &#62; Edit User &#62; Uncheck option Show Toolbar when viewing site. Hope it helps!]]></description>
			<content:encoded><![CDATA[<p>To remove wordpress admin bar for users, subscribers, contributors etc add the following code to functions.php somewhere below &lt;?php</p>
<p><span class="Apple-style-span" style="font-family: monospace;">// disable the admin bar<br />
</span><span class="Apple-style-span" style="font-family: monospace;">show_admin_bar(false);</span></p>
<p>Alternatively you can go to wp-admin &gt; All Users &gt; Edit User &gt; Uncheck option Show Toolbar when viewing site.</p>
<p>Hope it helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://mahmoodyaqub.com/?feed=rss2&#038;p=109</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete WordPress Unapproved Comments phpMyAdmin</title>
		<link>http://mahmoodyaqub.com/?p=96</link>
		<comments>http://mahmoodyaqub.com/?p=96#comments</comments>
		<pubDate>Mon, 05 Sep 2011 15:15:52 +0000</pubDate>
		<dc:creator>Mahmood Yaqub</dc:creator>
				<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mahmoodyaqub.com/?p=96</guid>
		<description><![CDATA[The following SQL query allows youto Delete WordPress unapproved comments through phpMyAdmin. DELETE FROM wp_comments WHERE comment_approved = 0 Please back up your wordpress database before you make any changes.]]></description>
			<content:encoded><![CDATA[<p>The following SQL query allows youto Delete WordPress unapproved comments through phpMyAdmin.</p>
<p><strong>DELETE FROM wp_comments WHERE comment_approved = 0</strong></p>
<p>Please back up your wordpress database before you make any changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://mahmoodyaqub.com/?feed=rss2&#038;p=96</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Title Attribute From Navigation Menus</title>
		<link>http://mahmoodyaqub.com/?p=94</link>
		<comments>http://mahmoodyaqub.com/?p=94#comments</comments>
		<pubDate>Fri, 26 Aug 2011 04:26:04 +0000</pubDate>
		<dc:creator>Mahmood Yaqub</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mahmoodyaqub.com/?p=94</guid>
		<description><![CDATA[Many prefer the built in page and category navigation so they won’t have to set it up for new items or just because that is what they are comfortable with. Often it might be desired to remove the title attribute assigned to menu items by WordPress. As with many things, this can be done in [...]]]></description>
			<content:encoded><![CDATA[<p>Many prefer the built in page and category navigation so they won’t have to set it up for new items or just because that is what they are comfortable with. Often it might be desired to remove the title attribute assigned to menu items by WordPress. As with many things, this can be done in more than one way.</p>
<p>This method filters the list output directly and prevents any title from showing. Add this to your functions.php file to remove the title from categories.</p>
<p>Open up the functions.php file in your child theme and add the following code. The code should be entered at the end of the file, just before the closing ?&gt; if there is one.</p>
<p><code>function wp_list_categories_remove_title_attributes($output) {<br />
$output = preg_replace('` title="(.+)"`', '', $output);<br />
return $output;<br />
}<br />
add_filter('wp_list_categories', 'wp_list_categories_remove_title_attributes');</code></p>
<h6><a href="http://dev.studiopress.com/remove-title-navigation.htm" target="_blank">Article Source</a></h6>
]]></content:encoded>
			<wfw:commentRss>http://mahmoodyaqub.com/?feed=rss2&#038;p=94</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp_commentmeta fix for WordPress</title>
		<link>http://mahmoodyaqub.com/?p=92</link>
		<comments>http://mahmoodyaqub.com/?p=92#comments</comments>
		<pubDate>Mon, 22 Aug 2011 06:05:30 +0000</pubDate>
		<dc:creator>Mahmood Yaqub</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mahmoodyaqub.com/?p=92</guid>
		<description><![CDATA[How to Reduce the size of wp_commentmeta. Many bloggers have addressed an issue that the size of the wp_commentmeta is growing huge tracking it back to a bug in akismet plugin. No you cannot delete wp_commentmeta completely. To fix this use the following sql statement via phymyadmin DELETE FROM wp_commentmeta WHERE comment_id NOT IN (SELECT [...]]]></description>
			<content:encoded><![CDATA[<p>How to Reduce the size of wp_commentmeta. Many bloggers have addressed an issue that the size of the wp_commentmeta is growing huge tracking it back to a bug in akismet plugin. No you cannot delete wp_commentmeta completely. To fix this use the following sql statement via phymyadmin</p>
<p>DELETE FROM wp_commentmeta WHERE comment_id NOT IN (SELECT comment_id FROM wp_comments)</p>
<p>Just tried it on one of my website reduced the size from 151.52 MB to 44KB. You can always manually delete the akismet meta key rows. </p>
<p>Always be smart, have a database backup.</p>
]]></content:encoded>
			<wfw:commentRss>http://mahmoodyaqub.com/?feed=rss2&#038;p=92</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pakistani Community Consumer Influence</title>
		<link>http://mahmoodyaqub.com/?p=87</link>
		<comments>http://mahmoodyaqub.com/?p=87#comments</comments>
		<pubDate>Mon, 11 Jul 2011 22:17:28 +0000</pubDate>
		<dc:creator>Mahmood Yaqub</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mahmoodyaqub.com/?p=87</guid>
		<description><![CDATA[Can&#8217;t see the form? Click here.]]></description>
			<content:encoded><![CDATA[<p><iframe width="540" height="794" src="http://formsmarts.com/form/qv6?mode=embed&#038;lay=2" scrolling="auto" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" frameborder="0" style="overflow-x:hidden"><a href="http://formsmarts.com/form/qv6">Can&#8217;t see the form? Click here</a>.</iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://mahmoodyaqub.com/?feed=rss2&#038;p=87</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

