<?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>Honeytech Blog - Top 10 &#124; Tutorials &#124; Internet Tools &#124; How to &#124; Guides &#187; wordpress</title>
	<atom:link href="http://www.honeytechblog.com/tags/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.honeytechblog.com</link>
	<description>Honeytech Blog is a technology portal of Tutorials, How to, Tips and Guides of Internet Tools, Social Media, Blogging , Wordpress, Open Source and Ways to make money online.</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:26:59 +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>A simple way to display your tweets with php</title>
		<link>http://www.honeytechblog.com/simple-display-tweets-php/</link>
		<comments>http://www.honeytechblog.com/simple-display-tweets-php/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 20:15:20 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=13400</guid>
		<description><![CDATA[Have you checked my right sidebar having latest tweets? It is very simple to display them in wordpress/any page using simple php code and styling. Here is the code that i used [cc lang="php"] [/cc] How to customize 1. Change the username // Your twitter username. $username = "honeytech"; 2. Change the display image background:url [...]]]></description>
			<content:encoded><![CDATA[<p>Have you checked my right sidebar having latest tweets? It is very simple to display them in wordpress/any page using simple php code and styling.</p>
<p><img class="aligncenter size-full wp-image-13404" title="Twitter-display-code" src="http://i.honeytechblog.com/2011/11/Twitter-display-code.png" alt="" width="385" height="160" /></p>
<h3>Here is the code that i used</h3>
<p>[cc lang="php"]</p>
<div style="width:300px">
<div style="float:left; font-family:Myriad Pro,arial; font-size:14px; padding:5px 0px 0px 81px; min-height:60px; background:url(http://media.honeytechblog.com/s1/images/avatar.gif) no-repeat;">
<?php</p>
<p>// Your twitter username.<br />
$username = "honeytech";</p>
<p>// Prefix - some text you want displayed before your latest tweet.<br />
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")<br />
$prefix = "";</p>
<p>// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)<br />
$suffix = "";</p>
<p>$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&#038;rpp=1";</p>
<p>function parse_feed($feed) {</p>
<p>$stepOne = explode("<content type=\"html\">&#8220;, $feed);<br />
$stepTwo = explode(&#8220;</content>&#8220;, $stepOne[1]);</p>
<p>$tweet = $stepTwo[0];<br />
$tweet = str_replace(&#8220;&apos;&#8221;, &#8220;&#8216;&#8221;, $tweet);<br />
$tweet = str_replace(&#8220;&lt;&#8221;, &#8220;<", $tweet);<br />
$tweet = str_replace("&gt;", ">&#8220;, $tweet);<br />
$tweet = str_replace(&#8220;&amp;quot;&#8221;, &#8220;&quot;&#8221;, $tweet);<br />
$tweet = str_replace(&#8220;&amp;lt&#8221;, &#8220;<", $tweet);<br />
$tweet = str_replace("&amp;gt", ">&#8220;, $tweet);<br />
$tweet = str_replace(&#8220;&quot;&#8221;, &#8220;\&#8221;", $tweet);</p>
<p>return $tweet;</p>
<p>}</p>
<p>$twitterFeed = file_get_contents($feed);</p>
<p>echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);</p>
<p>?></p>
</div>
</div>
<p>[/cc]</p>
<h3>How to customize</h3>
<p>1. Change the username<br />
<code>// Your twitter username.<br />
$username = "honeytech";</code><br />
2. Change the display image<br />
<em>background:url (http://media.honeytechblog.com/s1/images/avatar.gif)</em></p>
<h3>Having any problem</h3>
<p>Ping me <a href="http://twitter.com/#!/honeytech" title="@honeytech" target="_blank">@honeytech</a></p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-add-custom-twitter-updates-in-blogs-using-php/" rel="bookmark" title="May 25, 2010">How to add custom twitter updates in blogs using php</a></li>

<li><a href="http://www.honeytechblog.com/how-to-display-tag-clouds-without-using-any-wordpress-plugins/" rel="bookmark" title="August 27, 2009">How to display Tag Clouds without using any WordPress Plugins</a></li>

<li><a href="http://www.honeytechblog.com/how-to-use-multi-tabbed-menu-in-wordpress/" rel="bookmark" title="August 15, 2008">How to use multi tabbed menu in wordpress</a></li>

<li><a href="http://www.honeytechblog.com/tags-clouds-on-facebook-page/" rel="bookmark" title="March 25, 2010">How to show Tag clouds on your Facebook page</a></li>

<li><a href="http://www.honeytechblog.com/how-to-show-random-posts-without-using-any-wordpress-plugins/" rel="bookmark" title="August 23, 2009">How to show Random posts without using any WordPress plugins</a></li>
</ul><!-- Similar Posts took 10.607 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/simple-display-tweets-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Recommended WordPress Hosting Plugins for SEO</title>
		<link>http://www.honeytechblog.com/5-seo-wordpress-hosting-plugins/</link>
		<comments>http://www.honeytechblog.com/5-seo-wordpress-hosting-plugins/#comments</comments>
		<pubDate>Thu, 12 May 2011 12:21:53 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=12521</guid>
		<description><![CDATA[SEO can be extremely baffling for blog writers, whether for a newbie or for gurus. The major search engines check out what&#8217;s happening on the weblog since WordPress happens to be set up in a search engine friendly way. Nevertheless you can find truly beneficial plugins that can make life for bloggers less difficult and [...]]]></description>
			<content:encoded><![CDATA[<p>SEO can be extremely baffling for blog writers, whether for a newbie or for gurus. The major search engines check out what&#8217;s happening on the weblog since WordPress happens to be set up in a search engine friendly way. Nevertheless you can find truly beneficial plugins that can make life for bloggers less difficult and it in addition enables you to rank better. The SEO extensions underneath are what I look at the ones that ought to be set up for each and every weblog you host. Regardless of what subject you concentrate on.</p>
<h3>1.All in One SEO Pack</h3>
<p>The All in One SEO Pack is included in every list you find and with good reason. It allows you to configure your page titles, Meta tags and keywords as well as descriptions for either your whole blog or for individual page by individual page. Another advantage of this plugin is that it is compatible with other WordPress plugins and every beginner can handle it.<br />
<img src="http://i.honeytechblog.com/2011/05/all-seo.jpg" alt="" title="all-seo" width="620" height="463" class="aligncenter size-full wp-image-12530" /></p>
<h3>2.Permalinks Moved Permanently</h3>
<p>A lot of bloggers choose a wrong permalink structure at the beginning of their blogging career. Once you have gathered a few experiences you might notice that the structure needs to be adapted and changed. Herein lays a problem. If you manually change your permalink structure your traffic will come to a standstill until your site is indexed again. This could take a while. This plugin is similar to the Redirect plugin that is also available from WordPress but rather than redirecting traffic it manages your permalink structure. </p>
<h3>3.SEO Smart Links </h3>
<p>SEO Smart Links is important as it helps you to interlink your subpages to one another. All you have to do is predefine keywords that the plugin should link to other articles that focus on similar subjects. This doesn’t just help your readers to find other relevant posts but it also helps Google to see how well structured your blog is and will eventually turn into a better ranking.<br />
<img src="http://i.honeytechblog.com/2011/05/smart-links.jpg" alt="" title="smart-links" width="620" height="211" class="alignright size-full wp-image-12536" /></p>
<p><img src="http://i.honeytechblog.com/2011/05/Nofollow-Case-by-Case-200x150.gif" alt="" title="Nofollow Case by Case" width="150" style="margin-left:20px;" class="alignright size-thumbnail wp-image-12527" /></p>
<h3>4.Nofollow Case by Case</h3>
<p>The Nofollow Case by Case plugin allows you to decide which comment links, comment author links, pingbacks and trackbacks should be allowed to be follow and which should stay nofollow. As all comments are by default nofollow this plugin might come handy if you are a new blogger that wants to attract more traffic and encourage for readers to comment. This plugin should be configured as it otherwise converts all your nofollow links to follow links.</p>
<h3>5.Robots Meta</h3>
<p>Search engines crawl and index all your pages of your blog. When this occurs, it can happen that it creates duplicate content which you don’t want as Google could punish you for it. The Robots Meta plugin allows you to select which sections of your blog Google should crawl. </p>
<h3> Akismet (Bonus) </h3>
<p>This Plugin is from the makers of WordPress, and although it doesn’t have that much to do with SEO it is always on top of my list no matter what list I create as it is so handy that ever one should have it installed as it protects your blog from comment spam and pingbacks and trackback that you don’t want.<br />
<img src="http://i.honeytechblog.com/2011/05/akismet-spam.jpg" alt="" title="akismet-spam" width="620" /></p>
<p>I hope that with the above SEO extensions you’ll be a lot faster and more successful in your blogging. For further questions and suggestions don’t hesitate to contact me.<br />
<strong>About Author:</strong><br />
<em>Margaret Saunders is a part time webhosting consultant for IXwebhosting a <a href="http://www.ixwebhosting.com/">Web Hosting</a> company based in Ohio.</em></p>
Similar Posts:<ul>None Found
</ul><!-- Similar Posts took 6.336 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/5-seo-wordpress-hosting-plugins/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to remove trackbacks/pingbacks from wordpress posts without disabling it from dashboard</title>
		<link>http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/</link>
		<comments>http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:41:29 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[spams]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=8990</guid>
		<description><![CDATA[The main problem with the trackbacks/pingbacks are useless comments. Any spambot tools or person can spam your blogs and posts with useless linking. You can disable the trackbacks from wordpress dashboard but sometimes it is quite necessary to know &#8220;who links with your posts?&#8221; or &#8220;who plagiarise your posts ?&#8221; The best option is to [...]]]></description>
			<content:encoded><![CDATA[<p>The main problem with the trackbacks/pingbacks are useless comments. Any spambot tools or person can spam your blogs and posts with useless linking. You can disable the trackbacks from wordpress dashboard but sometimes it is quite necessary to know &#8220;who links with your posts?&#8221; or &#8220;who plagiarise your posts ?&#8221;</p>
<p>The best option is to remove trackbacks/pingbacks from wordpress posts without disabling it from dashboard.</p>
<p><img class="aligncenter size-full wp-image-8994" title="trackbacks" src="http://i.honeytechblog.com/2010/05/trackbacks.jpg" alt="" width="620" height="351" /></p>
<h3>Why i remove trackbacks/pingbacks from my blog ?</h3>
<p>Some posts like <a title="Top 50 Twitter Tracking and Analytics Tools" rel="bookmark" href="http://www.honeytechblog.com/top-50-twitter-tracking-and-analytics-tools/">top  50 Twitter tracking and analytics Tools</a> have more than <strong>1600 re-tweets</strong> and 20+ trackback&#8217;s. Some of the trackback&#8217;s are from high authority blogs like <a href="http://www.huffingtonpost.com/penny-c-sansevieri/brown-mms-or-what-van-hal_b_561029.html">huffingtonpost</a> but few are from low authority rss ripper blogs which is merely 2-3 months old.<br />
In order to protect the blog posts from spams i completely remove the trackbacks and pingbacks just from wordpress posts. I can still see the trackbacks on my dashboard but it is not coming on the blog posts.</p>
<p>There are some plugin&#8217;s to achieve the same but you can easily do this by adding a simple custom function in your functions.php file of wordpress theme.</p>
<h3>Custom code to be added in functions.php</h3>
<p><code>add_filter('comments_array', 'filterTrackbacks', 0);<br />
add_filter('the_posts', 'filterPostComments', 0);<br />
//Updates the comment number for posts with trackbacks<br />
function filterPostComments($posts) {<br />
foreach ($posts as $key =&amp;gt; $p) {<br />
if ($p-&amp;gt;comment_count &amp;lt;= 0) { return $posts; }<br />
$comments = get_approved_comments((int)$p-&amp;gt;ID);<br />
$comments = array_filter($comments, "stripTrackback");<br />
$posts[$key]-&amp;gt;comment_count = sizeof($comments);<br />
}<br />
return $posts;<br />
}<br />
//Updates the count for comments and trackbacks<br />
function filterTrackbacks($comms) {<br />
global $comments, $trackbacks;<br />
$comments = array_filter($comms,"stripTrackback");<br />
return $comments;<br />
}<br />
//Strips out trackbacks/pingbacks<br />
function stripTrackback($var) {<br />
if ($var-&amp;gt;comment_type == 'trackback' || $var-&amp;gt;comment_type == 'pingback') { return false; }<br />
return true;<br />
}</code></p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-show-random-posts-without-using-any-wordpress-plugins/" rel="bookmark" title="August 23, 2009">How to show Random posts without using any WordPress plugins</a></li>

<li><a href="http://www.honeytechblog.com/how-to-redirect-wordpress-com-blog-to-self-hosted-domain/" rel="bookmark" title="July 18, 2009">How to redirect wordpress.com blog to self hosted domain</a></li>

<li><a href="http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/" rel="bookmark" title="September 10, 2009">How to check Broken Links of WordPress Blogs</a></li>

<li><a href="http://www.honeytechblog.com/101-wordpress-tips-and-resources/" rel="bookmark" title="August 13, 2009">101 List Of Awesome WordPress Tips and Resources</a></li>

<li><a href="http://www.honeytechblog.com/100-collected-great-wordpress-video-tutorial-list/" rel="bookmark" title="May 20, 2009">100+ Collected Great WordPress Video Tutorial List</a></li>
</ul><!-- Similar Posts took 12.389 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add custom twitter updates in blogs using php</title>
		<link>http://www.honeytechblog.com/how-to-add-custom-twitter-updates-in-blogs-using-php/</link>
		<comments>http://www.honeytechblog.com/how-to-add-custom-twitter-updates-in-blogs-using-php/#comments</comments>
		<pubDate>Tue, 25 May 2010 13:29:01 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress tutorials]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=8978</guid>
		<description><![CDATA[You can easily add custom twitter updates just like we have on our sidebar. I&#8217;m not using any plugin and its just a simple php script to show latest update together with my avatar. Alternatively you can also use one of 25 twitter tools for WordPress Requirements and Steps Step 1. You need to create [...]]]></description>
			<content:encoded><![CDATA[<p>You can easily add custom twitter updates just like we have on our sidebar. I&#8217;m not using any plugin and its just a simple php script to show latest update together with my avatar. Alternatively you can also use one of  <a href="http://www.honeytechblog.com/top-25-twitter-tools-for-wordpress/">25 twitter tools  for WordPress</a></p>
<p><img src="http://i.honeytechblog.com/2010/05/twitter-custom-widget.png" alt="" title="twitter-custom-widget" width="620" height="124" class="aligncenter size-full wp-image-8982" /></p>
<h3>Requirements and Steps</h3>
<p><strong>Step 1</strong>. You need to create and upload a custom image together with your avatar (You can design whatever you want).The dimension used in my sidebar is 80x66px. Example url http://media.honeytechblog.com/s1/images/avatar.gif.</p>
<p><strong>Step 2</strong>.Customize the width and style as per your requirements.</p>
<p><strong>Step 3</strong>.You need to change the<strong> username</strong> with your <strong>twitter handle</strong>. Right now its <a href="http://twitter.com/honeytech">honeytech</a>.</p>
<p><strong>Step 4</strong>. Place the below script in sidebar or you can also place the script into wordpress widgets. You need to have <a href="http://wordpress.org/extend/plugins/exec-php/">Exec-PHP</a> plugin if you are placing php code in posts, pages and text widgets.</p>
<h3>Working Php Code</h3>
<p><code>&lt;h2&gt;<a href="http://www.twitter.com/honeytech"> Follow @honeytech </a> On Twitter&lt;/h2&gt;<br />
&lt;div style="width:340px"&gt;<br />
&lt;div style="float:left; font-family:Myriad Pro,arial; font-size:14px;<br />
padding:5px 0px 0px 81px; min-height:60px;<br />
 background:url(http://media.honeytechblog.com/s1/images/avatar.gif) no-repeat;"&gt;<br />
&lt;?php<br />
// Your twitter username.<br />
$username = "honeytech";<br />
// Prefix - some text you want displayed before your latest tweet.<br />
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")<br />
$prefix = "";<br />
// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)<br />
$suffix = "";<br />
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&amp;rpp=1";<br />
function parse_feed($feed) {<br />
$stepOne = explode("&lt;content type=\"html\"&gt;", $feed);<br />
$stepTwo = explode("&lt;/content&gt;", $stepOne[1]);<br />
$tweet = $stepTwo[0];<br />
$tweet = str_replace("&amp;apos;", "'", $tweet);<br />
$tweet = str_replace("&amp;lt;", "&lt;", $tweet);<br />
$tweet = str_replace("&amp;gt;", "&gt;", $tweet);<br />
$tweet = str_replace("&amp;amp;quot;", "&amp;quot;", $tweet);<br />
$tweet = str_replace("&amp;amp;lt", "&lt;", $tweet);<br />
$tweet = str_replace("&amp;amp;gt", "&gt;", $tweet);<br />
$tweet = str_replace("&amp;quot;", "\"", $tweet);<br />
return $tweet;<br />
}<br />
$twitterFeed = file_get_contents($feed);<br />
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);<br />
?&gt;<br />
&lt;/div&gt;</code></p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/top-25-twitter-tools-for-wordpress/" rel="bookmark" title="November 16, 2008">Top 25 twitter tools for WordPress</a></li>

<li><a href="http://www.honeytechblog.com/40-featured-wordpress-video-tutorials/" rel="bookmark" title="May 16, 2009">Top 40 Featured WordPress Video Tutorials</a></li>

<li><a href="http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/" rel="bookmark" title="May 27, 2010">How to remove trackbacks/pingbacks from wordpress posts without disabling it from dashboard</a></li>

<li><a href="http://www.honeytechblog.com/101-wordpress-tips-and-resources/" rel="bookmark" title="August 13, 2009">101 List Of Awesome WordPress Tips and Resources</a></li>

<li><a href="http://www.honeytechblog.com/simple-display-tweets-php/" rel="bookmark" title="November 10, 2011">A simple way to display your tweets with php</a></li>
</ul><!-- Similar Posts took 14.547 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-add-custom-twitter-updates-in-blogs-using-php/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Integrate Facebook In Firefox Browser</title>
		<link>http://www.honeytechblog.com/integrate-facebook-in-firefox/</link>
		<comments>http://www.honeytechblog.com/integrate-facebook-in-firefox/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:51:22 +0000</pubDate>
		<dc:creator>Nikita Porwal</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=6997</guid>
		<description><![CDATA[There is no ifs and buts about how interesting Facebook is, but once you enter the world of this social-networking you will probably be a bit besieged with great entertainment methods, social events and interest groups it carry. So obviously you would want to enhance the experience and access it fast from anywhere. That is [...]]]></description>
			<content:encoded><![CDATA[<p>There is no ifs and buts about how interesting <a href="http://www.facebook.com/honey.singh">Facebook </a>is, but once you enter the world of this social-networking you will probably be a bit besieged with great entertainment methods, social events and interest groups it carry. So obviously you would want to enhance the experience and access it fast from anywhere. That is why, we have cute little tools such as F<a href="http://developers.facebook.com/toolbar/">acebook Toolbar</a> that can be integrated with your Firefox browser and stay up-to-date with latest Facebook activity just on the go while browsing website of your interest. In other words, if you have this excellent toolbar installed in your browser, you will never miss any friends request, pm or event invite at your Facebook account, while at work or in middle of anything.</p>
<p><a rel="attachment wp-att-6996" href="http://www.honeytechblog.com/integrate-facebook-in-firefox/facebook-toolbar-for-firefox/"><img class="aligncenter size-full wp-image-6996" src="http://i.honeytechblog.com/2010/01/facebook-toolbar-for-firefox.jpg" alt="" width="550" height="404" /></a></p>
<h3>Interesting Features of Facebook Toolbar</h3>
<p>Facebook Toolbar integrates the facilities offered by your favorite social networking website into your browser.</p>
<h2>Search Facebook from anywhere</h2>
<p>The Search Box allows you to easily search Facebook no matter where you are. Select a friend from the dropdown to go directly to their profile, or hit &#8220;enter&#8221; to see the search results.</p>
<h3>Get Notified</h3>
<p>Icons on the toolbar tell you how many new pokes, friend requests, and messages you have. A pop-up will notify you when your friends update their statuses, write a new note or interact with you on Facebook.</p>
<h3>Connect with Friends</h3>
<p>Click the icon to open the Facebook friends sidebar. You can sort your friends by name or status and easily interact with them and their profiles.</p>
<h3>Share Content</h3>
<p>The share button lets you share the page that you are currently browsing by sending it to friends or posting it to your profile.</p>
<p><a rel="attachment wp-att-6998" href="http://www.honeytechblog.com/integrate-facebook-in-firefox/facebook-toolbar/"><img class="aligncenter size-full wp-image-6998" src="http://i.honeytechblog.com/2010/01/Facebook-Toolbar.gif" alt="" width="550" height="364" /></a></p>
<h3>Look and feel</h3>
<p>Once the toolbar is installed, you will notice a tab opened that will visually explain how elements in the toolbar works. The chief elements from Facebook Toolbar are – Search option, a drop-down menu having, Quick Links, Home, Five Notification Buttons, Share and Login. Further you will locate a small icon facing Search option, which will offer you to hide or open Friends Sidebar.</p>
<p>In case you are already login at Facebook, the Sidebar will show list of friends that are online. For each of your friends you will have few details such as profile photo, name and date of last updated. Another interesting feature you will find here is quickly send your friends a message with options like write a message, post something on the wall or poke friend. Other options in the drop-down menu of “Quick Links” might impress you with Profile, Photos, Groups, Friends, Notes, Events, Privacy Settings, Links, Account Settings, Videos and Toolbar Settings.</p>
<p>Furthermore, you will have set of buttons on every browser’s page namely Application, Share, Chat, Calendar and Notifications. The deal does not close here; in addition you will find a button next to Quick Links menu that will take you to Facebook Homepage. Here you can find number of unread messages and posts written on your wall.</p>
<h3>How does Facebook Toolbar work?</h3>
<p>As I told you there is a left side that offers information about your online friends, here you can open or hide the statusbar by clicking on script-like icon placed in search bar. You can next find out more about friend’s status just by keying the name in search box. If you want a picture about the changes made in your profile go to Quick Links menu, here you have posts, short notes, new groups and account settings.</p>
<p>For events information that you have already joined in, click on events link that will give you description of past and future events. Obviously here you have details of event type, location, and guest and attendance status of yours. You can react whether you are Attending, Not Attending or Maybe just by hitting placed without visiting the event page. Also check out on your top-right corner, you will locate search-for-events link that will help you create new events.</p>
<p>Accessing videos is a piece of cake, all you need to do go to Quick Links and click on “Video” and you will find snapshots of every video posted by you and your friends on Facebook. The most interesting feature, which could actually simplify your work, is one that would let you update your Facebook status right from the toolbar. Edit applications page can help you change further settings.</p>
<p>Most important part of Facebook is certainly uploading pictures and this toolbar will help you create a new album or even edit the present one in few clicks. Finally your Facebook toolbar also allows you to edit the Notifications page, which offers you actions that needs to be taken. For example, when you receive a new message, when someone write on your wall or any event invite.</p>
<h3>Conclusion</h3>
<p>We at Honeytechblog think that Facebook Toolbar is a cool tool and is highly recommended for any user. Even if you already know how to play around with Facebook, this add-on will certainly help you make your work quicker and organized. This user-friendly tool can no doubt will be of fun and help you save time, by maintaining your favorite social network uninterrupted even at work.</p>
<p>Although Facebook Toolbar is here for quite some time, there are many users unaware of it. With that in mind this review is been written. We hope the information was useful to the readers and do share your experience working with Facebook Toolbar with us via comment.<br />

<a href='http://www.honeytechblog.com/integrate-facebook-in-firefox/facebook-toolbar/' title='Facebook Toolbar'><img width="200" height="150" src="http://i.honeytechblog.com/2010/01/Facebook-Toolbar-200x150.gif" class="attachment-thumbnail" alt="Facebook Toolbar" title="Facebook Toolbar" /></a>
<a href='http://www.honeytechblog.com/integrate-facebook-in-firefox/facebook-toolbar-for-firefox/' title='facebook-toolbar-for-firefox'><img width="200" height="150" src="http://i.honeytechblog.com/2010/01/facebook-toolbar-for-firefox-200x150.jpg" class="attachment-thumbnail" alt="facebook-toolbar-for-firefox" title="facebook-toolbar-for-firefox" /></a>
</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-backup-your-facebook-data-using-firefox/" rel="bookmark" title="October 13, 2009">How To Backup Your Facebook Data Using Firefox?</a></li>

<li><a href="http://www.honeytechblog.com/myspace-launch-revamped-homepage-august-16/" rel="bookmark" title="August 13, 2010">MySpace to Launch Revamped Homepage on August 16</a></li>

<li><a href="http://www.honeytechblog.com/what-is-new-with-facebook/" rel="bookmark" title="September 1, 2008">What is new with Facebook?</a></li>

<li><a href="http://www.honeytechblog.com/shareaholice-brings-multi-bookmarking-features/" rel="bookmark" title="April 2, 2009">Shareaholice Brings Multi Bookmarking Features</a></li>

<li><a href="http://www.honeytechblog.com/top-5-apps-on-facebook-for-professional/" rel="bookmark" title="August 18, 2009">Top 5 Apps on Facebook for Professionals</a></li>
</ul><!-- Similar Posts took 19.652 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/integrate-facebook-in-firefox/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Top 10 Government Sites Powered By WordPress</title>
		<link>http://www.honeytechblog.com/top-10-government-sites-powered-by-wordpress/</link>
		<comments>http://www.honeytechblog.com/top-10-government-sites-powered-by-wordpress/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 11:39:54 +0000</pubDate>
		<dc:creator>Nikita Porwal</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Top 10]]></category>
		<category><![CDATA[Top Sites]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=6667</guid>
		<description><![CDATA[In case you are looking start of your web based or a CMS project, then WordPress is strongly recommended. There are many reasons why we love WordPress and believe that it is the best blogging/CMS platform on web today. Some of the reasons why honeytechblog is powered by WordPress are: Its Simplicity Trackback Feature Auto [...]]]></description>
			<content:encoded><![CDATA[<p>In case you are looking start of your web based or a CMS project, then WordPress is strongly recommended. There are many reasons why we love WordPress and believe that it is the best blogging/CMS platform on web today. Some of the reasons why honeytechblog is powered by WordPress are:</p>
<ul>
<li>Its Simplicity</li>
<li>Trackback Feature</li>
<li>Auto Ping Functionality</li>
<li>Easy to Customise</li>
<li>Variety of Design Themes Available</li>
<li>Outstanding Plugin Functionality</li>
<li>User-friendly and So on</li>
</ul>
<p>With increasing popularity <a href="http://www.webhostingsearch.com/wordpress-hosting.php">WordPress web hosting</a> has become common as many are choosing wordpress as the base platform for their project. In fact, toady you will find many .gov and .org sites are based on wordpress. Here, I have collected Top 10 Government Sites Powered By WordPress.</p>
<p><strong>1. </strong><a href="http://blogs.america.gov/"><strong>America.gov</strong></a></p>
<p>America.gov is produced by U.S. Department of State’s Bureau of International Information Programs (IIP), which engages international audiences on issues of foreign policy, society and values to help create an environment receptive to U.S. national interests. IIP communicates with foreign opinion makers and other publics through a wide range of print and electronic outreach materials published in English, Arabic, Chinese, French, Persian, Russian, and Spanish. IIP also provides information outreach support to U.S. embassies and consulates in more than 140 countries worldwide.</p>
<p><img class="aligncenter size-full wp-image-6668" src="http://i.honeytechblog.com/2009/11/america.gov_.gif" alt="america.gov" width="620" height="353" /></p>
<p><strong>2. </strong><a href="http://cboblog.cbo.gov/"><strong>Congressional Budget Office</strong></a></p>
<p>Congressional Budget Office blog is maintained by the director Douglas W. Elmendorf. He oversees the agency’s work in providing objective, insightful, timely, and clearly presented information about budgetary and economic issues. The Director also supervises the numerous analytical papers and cost estimates produced by the agency, and he testifies frequently before Congressional committees. In managing the agency, the Director is responsible for a staff of about 235 people and an annual budget of roughly $40 million.</p>
<p><img class="aligncenter size-full wp-image-6669" src="http://i.honeytechblog.com/2009/11/cboblog.cbo_.gov_.gif" alt="cboblog.cbo.gov" width="620" height="359" /></p>
<p><strong>3. </strong><a href="http://blog.broadband.gov/"><strong>Broadband.gov</strong></a></p>
<p>Blogband is the official blog of the United States National Broadband Plan. A great way to create a connected America is to involve all Americans in the development of a National Broadband Plan. The FCC welcomes civic participation, and also look forward to more interaction through this website as they new features and functions. Through this blog, broadband tries to help spread the word about the available and imminent plans and promote what FCC is doing to educate people about it. Blogband is also one of the FCC’s major ventures into blogging and social media.</p>
<p><img class="aligncenter size-full wp-image-6670" src="http://i.honeytechblog.com/2009/11/broadband.gov_.gif" alt="broadband.gov" width="620" height="350" /></p>
<p><strong>4. </strong><a href="http://www.ncptt.nps.gov/"><strong>National Center for Preservation Technology &amp; Training</strong></a></p>
<p>NCPTT protects America&#8217;s historic legacy by equipping preservation professionals with progressive technology-based research and training. NCPTT advances the application of science and technology to historic preservation. Working in the fields of archeology, architecture, landscape architecture and materials conservation, the Center accomplishes its mission through training, education, research, technology transfer and partnerships. NCPTT serves the community that fostered its creation and, in turn, serves the nation and the world.</p>
<p><img class="aligncenter size-full wp-image-6671" src="http://i.honeytechblog.com/2009/11/ncptt.nps_.gov_.gif" alt="ncptt.nps.gov" width="620" height="363" /></p>
<p><strong>5. </strong><a href="http://www.speaker.gov/"><strong>Speaker Nancy Pelosi</strong></a></p>
<p>This blog belongs to Nancy Pelosi who is the Speaker of the House of Representatives, having made history in 2007 when she was elected first woman to serve as Speaker of the House.  Speaker Pelosi has proved to be a strong, pragmatic leader, unifying her House Democratic caucus more than any other leader in the last 50 years to pass critical legislation moving America in a New Direction after eight years of Republican rule. With Speaker Pelosi at the helm, the 110th Congress has built an impressive record that has focused on the priorities of the American people and brought needed change to Washington and across the country.</p>
<p><img class="aligncenter size-full wp-image-6677" src="http://i.honeytechblog.com/2009/11/speaker.gov_1.gif" alt="speaker.gov" width="620" height="352" /></p>
<p><strong>6. </strong><a href="http://www.number10.gov.uk/"><strong>Official Site of U.K&#8217;s Prime Minister Gordon Brown</strong></a></p>
<p>This is the official site of the U.K Prime Minister’s (Gordon Brown) office. It is the complete source of information on Prime Minister’s performance and activity. The news feature will continue to be central to the site, allowing you to keep up to date with Prime Minister’s work. The Number10 TV channel also provide a wealth of video material, photos updated quickly to the Number 10 Flickr channel, and he will also be posting frequent messages through Twitter to keep you in touch with his day to day activities. With this site he discover what are the current issues faced by the country and locates solution to it.</p>
<p><img class="aligncenter size-full wp-image-6678" src="http://i.honeytechblog.com/2009/11/number10.gov_.uk_.gif" alt="number10.gov.uk" width="620" height="359" /></p>
<p><strong>7. </strong><a href="http://www.cultura.gov.br/site/"><strong>Brazilian Culture Ministry</strong></a></p>
<p>It is the official web site of the Brazilian Culture Ministry. Apart from daily updates, the sites shares huge information on Project support, Bids and Awards, meetings and forums and videos.</p>
<p><img class="aligncenter size-full wp-image-6673" src="http://i.honeytechblog.com/2009/11/cultura.gov_.br_.gif" alt="cultura.gov.br" width="620" height="356" /></p>
<p><strong>8. </strong><a href="http://blogs.loc.gov/loc/"><strong>Library of Congress</strong></a></p>
<p>The Library of Congress (LOC) is the nation&#8217;s oldest federal cultural institution and serves as the research arm of Congress. It is also the largest library in the world, with millions of books, recordings, photographs, maps and manuscripts in its collections. The Library&#8217;s mission is to make its resources available and useful to the Congress and the American people and to sustain and preserve a universal collection of knowledge and creativity for future generations. The Office of the Librarian is tasked to set policy and to direct and support programs and activities to accomplish the Library&#8217;s mission.</p>
<p><img class="aligncenter size-full wp-image-6674" src="http://i.honeytechblog.com/2009/11/loc.gov_.gif" alt="loc.gov" width="620" height="357" /></p>
<p><strong>9. </strong><a href="http://innovate.direct.gov.uk/"><strong>Directgov | innovate</strong> </a></p>
<p>Directgov is an Directgov | innovate developer site to provide an innovative, collaborative, open source environment for Government and developers to interact, share new ideas and showcase work. The success of this space is dependent on open participation and the ability to have conversations around best use of government data, development of applications and use of new and innovative technologies.</p>
<p><img class="aligncenter size-full wp-image-6675" src="http://i.honeytechblog.com/2009/11/direct.gov_.uk_.gif" alt="direct.gov.uk" width="620" height="348" /></p>
<p><strong>10. </strong><a href="http://poit.cabinetoffice.gov.uk/poit/"><strong>Power of Information Taskforce Report</strong></a></p>
<p>This site offers report on Power of Information Taskforce. The Taskforce brought together a group from government, industry and the third sector who all share a passion for using ICT to enable better public service delivery. All members have contributed in a personal capacity rather than on behalf of their respective organizations and this independence of approach is reflected in our conclusions. The group has itself worked largely through web 2.0 tools – communicating as a web group, publishing our progress via a blog and RSS feed, and producing this draft report on a wiki.</p>
<p><img class="aligncenter size-full wp-image-6676" src="http://i.honeytechblog.com/2009/11/cabinetoffice.gov_.uk_.gif" alt="cabinetoffice.gov.uk" width="620" height="354" /></p>
<p>All these sites are powered by WordPress and doing a great job out there. Do share other wordpress based websites (only .gov) if you come across. Meanwhile, if you are a blogger then let’s join hand together via <a href="http://spreadsheets.google.com/viewform?formkey=dFBZaW5qcnlwckJtVGY1MjBIbTR4THc6MA">Blogger on Twitter</a>.</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/wordpresstv-tapering-the-way-you-blog/" rel="bookmark" title="January 17, 2009">WordPress.tv &#8211; Tapering the way you blog</a></li>

<li><a href="http://www.honeytechblog.com/10-most-popular-wordpress-plugins/" rel="bookmark" title="April 29, 2009">10+ Most Popular WordPress Plugins</a></li>

<li><a href="http://www.honeytechblog.com/top-20-best-of-wordpress-theme-resource/" rel="bookmark" title="May 24, 2009">TOP 20 Best Of WordPress Theme Resource</a></li>

<li><a href="http://www.honeytechblog.com/101-wordpress-tips-and-resources/" rel="bookmark" title="August 13, 2009">101 List Of Awesome WordPress Tips and Resources</a></li>

<li><a href="http://www.honeytechblog.com/reload-your-iphone-for-wordpress-download-application/" rel="bookmark" title="August 6, 2008">Reload your iphone for wordpress [Download id not defined]</a></li>
</ul><!-- Similar Posts took 13.690 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/top-10-government-sites-powered-by-wordpress/feed/</wfw:commentRss>
		<slash:comments>279</slash:comments>
		</item>
		<item>
		<title>Top 10 Social Media Tracking and Analytics Tools</title>
		<link>http://www.honeytechblog.com/top-10-social-media-tracking-and-analytics-tools/</link>
		<comments>http://www.honeytechblog.com/top-10-social-media-tracking-and-analytics-tools/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 20:22:03 +0000</pubDate>
		<dc:creator>Nikita Porwal</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Top 10]]></category>
		<category><![CDATA[Top Sites]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[web tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=6628</guid>
		<description><![CDATA[No one can deny the fact that today social media are great source of valuable marketing tools. But tracking the social media could be relatively new term for many people. Keeping track of your scores on social media and content outlets on the web is very important. One needs to understand the fact that by [...]]]></description>
			<content:encoded><![CDATA[<p>No one can deny the fact that today social media are great source of valuable marketing tools. But tracking the social media could be relatively new term for many people. Keeping track of your scores on social media and content outlets on the web is very important. One needs to understand the fact that by tracking you can respond quickly so as on what people are talking about you or your product/brand. For example, a business would like to track what is been discussed about his brand across the web &#8211; are they creating a buzz or they are criticizing the product? So here, by tracking the most vital conversations about the business product/service, you get a better chance to identify the influential people in the niche, and to figure out the best way to work out on the flaws.</p>
<p>Note – You must first make sure on what you have to track, as social media comprises various kinds of tracking. Set your goals, do you need to track on how people are sharing your blog/website/social networks? Whether you are interesting in tracking any specific social media message/campaign? Or, you just want to track the real-time buzz across the web and more like that. So, as the requirements are different, there are different social media tracking tools to be used. And to list out the most important, honeytechblog is sharing Top 10 Social Media Tracking Tools that you must try.</p>
<h3>Update1:</h3>
<p><strong><a href="http://www.radian6.com/ ">Radian6</a></strong> is one of the most popular and widely used social media analytic tool for measurements. It is a flash based application that gives various variety of pie charts an graphs based on desired filers and keywords for brands. It is commonly used for social media measurement, web analytic and have integration of <a href="http://www.comscore.com">comscore</a> API.</p>
<p><strong>Lithium</strong> is another measuring tool for Social Media and just like radian6 it have options to source data from twitter, blogs and web forums. </p>
<h3>Update:2</h3>
<p>Update: If you are looking for professional social tracking tools then you should also look into <a href="http://www.honeytechblog.com/5-tracking-tools-track-social-media-stats/">5 tracking tools to analyse your Social Media stats</a> and <a href="http://www.techprone.com/10-twitter-tools-to-increase-your-social-media-efficiency/">10 twitter tools to increase your Social Media efficiency</a>.</p>
<p><a href="http://www.socialmention.com/">Socialmention</a> – Social Mention is a social media search and analysis platform that aggregates user generated content from across the universe into a single stream of information. It allows you to easily track and measure what people are saying about you, your company, a new product, or any topic across the web&#8217;s social media landscape in real-time. Social Mention monitors 100+ social media properties directly including: Twitter, Facebook, FriendFeed, YouTube, Digg, Google etc. Social Mention currently provides a point-in-time social media search and analysis service, daily social media alerts, and API.</p>
<p><img src="http://i.honeytechblog.com/2009/11/Socialmention1.gif" alt="Socialmention" width="620" height="351" /></p>
<p><a href="http://www.Bit.ly">Bit.ly</a> &#8211; You already know how interesting this tiny URL shortener is and if you haven’t tried it then go ahead you will fall in love with it for sure. This is a web tool that shrinks long URLs, along with statistical tools to track down the popularity of shortened links. Once you have an account there, it will be easy for you to track down the real time clicks that are made on those URLs that you shorten. Working with bit.ly is not only easy, but also fun to play with.</p>
<p><img class="aligncenter size-full wp-image-6646" src="http://i.honeytechblog.com/2009/11/Bit.ly_1.gif" alt="Bit.ly" width="620" height="353" /></p>
<p><a href="http://www.socialtoo.com/">SocialToo</a> – SocialToo can help you be a social networking power user. It let you keep your follower lists in sync across networks, and learn more about your relationships. Impressive features would include &#8211; creating surveys and sending them to multiple networks, track social media stats, auto follow, auto filtering and much more. You will also get daily email on who is following you and who unfollows you on Twitter. There is much more with this giant – get it now.</p>
<p><img class="aligncenter size-full wp-image-6647" src="http://i.honeytechblog.com/2009/11/Socialtoo1.gif" alt="Socialtoo" width="620" height="344" /></p>
<p><a href="http://www.twitteranalyzer.com/">Twitteranalyzer</a> – It is an interesting tool that helps to get all kind of statistic chart about you and your friends behavior at Twitter site. If you love using Google Analytics then this tool is sure to impress you. Some exciting features of Twitter Analyzer are – you can see how followers are online presently, who retweets your messages, what people are writing about you, Twitter following stats, your Tweeting habits and many more. It is pretty simple to use, so give it a try, I’m sure you won’t regret.</p>
<p><img class="aligncenter size-full wp-image-6648" src="http://i.honeytechblog.com/2009/11/Twitteranalyzer1.gif" alt="Twitteranalyzer" width="620" height="337" /></p>
<p><a href="http://xinureturns.com/">Xinureturns</a> &#8211; This is one of the best social media tracking tool you would come across to get dashboard overview of your website on social networks and search engines. Once you run a report, you get the most in-depth information on Technorati, Googe Pagerank, Social Bookmarks, Indexed Page, Ranking and backlinks to your website. Just type in the URL and click “Go” there you have most of the report you would expect from Syndication to Screenshot.</p>
<p><img class="aligncenter size-full wp-image-6649" src="http://i.honeytechblog.com/2009/11/Xinureturns1.gif" alt="Xinureturns" width="620" height="359" /></p>
<p><a href="http://tweetstats.com/">Tweetstats </a>- Ever wondered how your twitter stats graph looks like? Well, Tweetstats is the tool helps you analyze your tweets in various ways in form of graph. Twitter graph would include your tweets per hour, tweets per month, tweet timeline and reply statistics. You can also graph of “Today’s Top 10 Twitter Apps” and “Today Top @’ed Tweeps”. Another cool feature you would find is TrendCloud option to locate which word you use most in your tweets. And then there is color change option for the cloud also, so go ahead check your graph now.</p>
<p><img class="aligncenter size-full wp-image-6650" src="http://i.honeytechblog.com/2009/11/Tweetstats1.gif" alt="Tweetstats" width="620" height="345" /></p>
<p><a href="http://www.twitalyzer.com/twitalyzer/index.asp">Twitalyzer</a> &#8211; Twitalyzer is a free tool to evaluate the activity of any Twitter user and report on dozens of useful measures of success in social media. In other words, Twitalyzer is the tool that gauges your presence and popularity in Twitter. Some interesting features would be your virtual influence, Links to URLs, the signal-to-noise ratio, your clout, generosity, your tendency to share good info and tweets with others by retweeting and other useful measures of success in social media. All you need to try out this is input your screen and hit the button “Twitalize!”</p>
<p><img class="aligncenter size-full wp-image-6653" src="http://i.honeytechblog.com/2009/11/Twitalyzer1.gif" alt="Twitalyzer" width="620" height="355" /></p>
<p><a href="http://blogpulse.com/">BlogPulse</a> – This is an awesome tool for “buzz tracking”. BlogPulse Trend Search allows you to create graphs that visually track &#8220;buzz&#8221; over time for certain key words, phrases or links. Compare search terms/links in isolation, or use all three fields to compare search terms/links against others. Use the Trend search to create your own graphs that plot &#8220;buzz&#8221; about specific search terms (issues, people, companies, brands, sports, etc.) in the blogosphere. Choose from three different time parameters—one month, two months or six months. Be creative!</p>
<p><img class="aligncenter size-full wp-image-6654" src="http://i.honeytechblog.com/2009/11/BlogPulse1.gif" alt="BlogPulse" width="620" height="349" /></p>
<p><a href="http://www.postrank.com/">PostRank </a>– PostRank originally known as AideRSS monitors and collects social engagement events correlated with online content in real-time across the web. PostRank gathers where and when stories generate comments, bookmarks, tweets, stumbles, and other forms of interaction from a host of social hubs. Publishers and people interested in their content use PostRank Data Services and Analytics to gauge influence and reach with audiences. It can do wonders for blogs/websites which are loaded with content.</p>
<p><img class="aligncenter size-full wp-image-6655" src="http://i.honeytechblog.com/2009/11/PostRank1.gif" alt="PostRank" width="620" height="344" /></p>
<p><a href="http://boardtracker.com/">Broadtracker</a> – If you actively participate in forums then you would love this. BoardTracker.com, is an innovative forum search engine, message tracking and instant alerts system designed to provide relevant information quickly and efficiently while ensuring you never miss an important forum thread no matter where or when it is posted. Boardtracker brings the most targeted audience closer to the boards, by being a search engine only for boards and by supplying a categorized and highly effective searching and browsing experience to users. Create an account and get started.</p>
<p><img class="aligncenter size-full wp-image-6656" src="http://i.honeytechblog.com/2009/11/boardtracker1.gif" alt="boardtracker" width="620" height="354" /></p>
<p>Some of these Top 10 free social media tracking tools I came across. If you know of any more we’d love to hear about them. Meanwhile, you can subscribe to our <a href="http://feeds.feedburner.com/honeytechblog">RSS feeds</a> so that you don’t miss out on any post and hey lets also meet up on<a href="http://twitter.com/honeytech"> Twitter</a>.</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/5-tracking-tools-track-social-media-stats/" rel="bookmark" title="May 18, 2011">5 Tracking Tools to analyse your Social Media Stats</a></li>

<li><a href="http://www.honeytechblog.com/10-tools-schedule-twitter-posts/" rel="bookmark" title="April 30, 2011">10 Tools to Schedule your Twitter Posts</a></li>

<li><a href="http://www.honeytechblog.com/top-50-twitter-tracking-and-analytics-tools/" rel="bookmark" title="December 5, 2009">Top 50 Twitter Tracking and Analytics Tools</a></li>

<li><a href="http://www.honeytechblog.com/list-of-15-unfamiliar-twitter-apps-and-tools/" rel="bookmark" title="August 29, 2009">List of 15 Unfamiliar Twitter Apps and Tools</a></li>

<li><a href="http://www.honeytechblog.com/trill-twitter-client-nokia-device/" rel="bookmark" title="November 3, 2010">Trill &#8211; Twitter Client for Nokia Smart Phones</a></li>
</ul><!-- Similar Posts took 14.208 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/top-10-social-media-tracking-and-analytics-tools/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Download WhiteMag in Blue Theme–A Light weight simple wordpress theme</title>
		<link>http://www.honeytechblog.com/download-whitemag-in-blue-theme-a-light-weight-simple-wordpress-theme/</link>
		<comments>http://www.honeytechblog.com/download-whitemag-in-blue-theme-a-light-weight-simple-wordpress-theme/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 06:51:16 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=6067</guid>
		<description><![CDATA[I recently published a WhiteMag – Light weight simple wordpress theme which have widget ready sidebars, footers, custom fields, thumbnails and other features like re-tweet, facebook share buttons. WhiteMag in Blue Theme is another blue wrapper with directive and vibrant look. Download / Demo Similar Posts:WhiteMag &#8211; Light weight simple wordpress theme TOP 20 Best [...]]]></description>
			<content:encoded><![CDATA[<p>I recently published a<a title="Permanent Link to WhiteMag – Light weight simple wordpress theme" rel="bookmark" href="../whitemag-light-weight-simple-wordpress-theme/"> WhiteMag – Light weight simple wordpress theme</a> which have widget ready sidebars, footers, custom fields, thumbnails and other features like re-tweet, facebook share buttons. WhiteMag in Blue Theme is another blue wrapper with directive and vibrant look.<a rel="attachment wp-att-6102" href="http://www.honeytechblog.com/download-whitemag-in-blue-theme-a-light-weight-simple-wordpress-theme/blue-whitemag/"><img class="aligncenter size-full wp-image-6102" title="blue-whitemag" src="http://i.honeytechblog.com/2009/10/blue-whitemag.png" alt="blue-whitemag" width="422" height="226" /></a></p>
<h3>Download <a class="downloadlink" href="http://www.honeytechblog.com/download/WhiteMag-Blue.zip" title="Version1.1 downloaded 103 times" >WhiteMag in Blue Theme (103)</a> / <a href="http://honeytechblog.com/micro-news/?wptheme=WhiteMag-Blue">Demo</a></h3>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/" rel="bookmark" title="October 24, 2009">WhiteMag &#8211; Light weight simple wordpress theme</a></li>

<li><a href="http://www.honeytechblog.com/top-20-best-of-wordpress-theme-resource/" rel="bookmark" title="May 24, 2009">TOP 20 Best Of WordPress Theme Resource</a></li>

<li><a href="http://www.honeytechblog.com/download-honeytechblog-christmas-flavored-free-wordpress-theme/" rel="bookmark" title="December 17, 2008">Download HoneytechBlog Christmas flavored wordpress theme</a></li>

<li><a href="http://www.honeytechblog.com/merry-christmas-with-a-free-christmas-wordpress-theme/" rel="bookmark" title="December 24, 2008">Merry Christmas with a free Christmas WordPress theme</a></li>

<li><a href="http://www.honeytechblog.com/jquery-slideshow-tutorials/" rel="bookmark" title="June 2, 2010">10 Wonderful Collection Of jQuery Slideshow Tutorials</a></li>
</ul><!-- Similar Posts took 6.078 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/download-whitemag-in-blue-theme-a-light-weight-simple-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>WhiteMag &#8211; Light weight simple wordpress theme</title>
		<link>http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/</link>
		<comments>http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 10:12:07 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=6037</guid>
		<description><![CDATA[WhiteMag is very simple and light weighted wordpress theme for bloggers. It is have widget ready sidebars, footers, custom fields, thumbnails and other features like re-tweet, facebook share buttons. Some of the different in build features are listed as: Live Demo In build breadcrumbs navigation&#8217;s without using any plugins Re-tweet and facebook post buttons. Auto [...]]]></description>
			<content:encoded><![CDATA[<p>WhiteMag is very simple and light weighted wordpress theme for bloggers. It is have widget ready sidebars, footers, custom fields, thumbnails and other features like re-tweet, facebook share buttons. Some of the different in build features are listed as:</p>
<p><a rel="attachment wp-att-6038" href="http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/screenshot-big/"><img title="screenshot-big" src="http://i.honeytechblog.com/2009/10/screenshot-big.gif" alt="screenshot-big" width="620" height="388" /></a></p>
<h3><a href="http://honeytechblog.com/micro-news/?wptheme=WhiteMag">Live Demo</a></h3>
<ul>
<li>In build breadcrumbs navigation&#8217;s without using any plugins</li>
<li>Re-tweet and facebook post buttons.</li>
<li>Auto excerpt with read more feature.</li>
<li>Widget ready sidebar.</li>
<li>Widget ready footer with an option to configure 4 widgets in the bottom.</li>
<li>In build custom function for thumbnails. You need to add a custom field as &#8220;<strong>thumb</strong>&#8221; with a image url to get the thumbs together with the post at the homepage.<a rel="attachment wp-att-6041" href="http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/custom-field-thumb/"><img class="aligncenter size-full wp-image-6041" title="custom-field-thumb" src="http://i.honeytechblog.com/2009/10/custom-field-thumb.png" alt="custom-field-thumb" width="620" height="290" /></a></li>
<li>
<h3><a href="http://www.honeytechblog.com/download/WhiteMag2.zip">Download</a> / <a href="http://honeytechblog.com/micro-news/?wptheme=WhiteMag">Demo</a></h3>
<p>  <a class="downloadlink" href="http://www.honeytechblog.com/download/WhiteMag2.zip" title="Version1.2 downloaded 149 times" >WhiteMag Wordpress Theme (149)</a></li>
</ul>
<p><b>Coming Soon</b><br />
A series of different designs on the base WhiteMag theme will be launch in coming days.</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/download-whitemag-in-blue-theme-a-light-weight-simple-wordpress-theme/" rel="bookmark" title="October 25, 2009">Download WhiteMag in Blue Theme–A Light weight simple wordpress theme</a></li>

<li><a href="http://www.honeytechblog.com/top-20-best-of-wordpress-theme-resource/" rel="bookmark" title="May 24, 2009">TOP 20 Best Of WordPress Theme Resource</a></li>

<li><a href="http://www.honeytechblog.com/download-honeytechblog-christmas-flavored-free-wordpress-theme/" rel="bookmark" title="December 17, 2008">Download HoneytechBlog Christmas flavored wordpress theme</a></li>

<li><a href="http://www.honeytechblog.com/merry-christmas-with-a-free-christmas-wordpress-theme/" rel="bookmark" title="December 24, 2008">Merry Christmas with a free Christmas WordPress theme</a></li>

<li><a href="http://www.honeytechblog.com/40-featured-wordpress-video-tutorials/" rel="bookmark" title="May 16, 2009">Top 40 Featured WordPress Video Tutorials</a></li>
</ul><!-- Similar Posts took 6.134 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/whitemag-light-weight-simple-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to show RSS feeds in a WordPress Page and Posts</title>
		<link>http://www.honeytechblog.com/how-to-show-rss-feeds-in-a-wordpress-page-and-posts/</link>
		<comments>http://www.honeytechblog.com/how-to-show-rss-feeds-in-a-wordpress-page-and-posts/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 15:01:16 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5876</guid>
		<description><![CDATA[Most of the bloggers having different blogs (on same or other domain) wants to aggregate the updates on the same page. If you wants to show different blogs latest post links on a wordpress page then its very easy to show rss feeds within wordpress with the help of simplexml. The following codes displays the [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the bloggers having different blogs (on same or other domain) wants to aggregate the updates on the same page. If you wants to show different blogs latest post links on a wordpress page then its very easy to show rss feeds within wordpress with the help of simplexml. The following codes displays the feeds from the single feed url.<br />
<a href="http://www.honeytechblog.com/how-to-show-rss-feeds-in-a-wordpress-page-and-posts/how-to-show-rss-feeds-in-wordrpress-pages/" rel="attachment wp-att-5884"><img src="http://i.honeytechblog.com/2009/10/How-to-show-rss-feeds-in-wordrpress-pages.jpg" alt="How to show rss feeds in wordrpress pages" title="How to show rss feeds in wordrpress pages" width="620" height="300" class="aligncenter size-full wp-image-5884" /></a><br />
<code>&lt;?php<br />
$xml_file = 'http://feeds.feedburner.com/honeytechblog';<br />
$xml = simplexml_load_file($xml_file);<br />
$xml_channel = $xml-&gt;channel-&gt;item;<br />
for ($i=0; $i&lt;5; $i++) {<br />
//print_r($result);<br />
?&gt;<br />
&lt;div&gt;<br />
<a href="<?php echo $xml_channel[$i]->link; ?&gt;"&gt;<br />
&lt;?php<br />
echo $xml_channel[$i]-&gt;title."</a>&lt;/div&gt;";<br />
}<br />
?&gt; </code></p>
<p> There are some parameters which can customize your requirements like:</p>
<ul>
<li><strong>$xml_file =</strong> Feed Url for example i use <code>$xml_file = 'http://feeds.feedburner.com/honeytechblog'; </code>
</li>
<li>Value of <strong>i</strong> for no of links, for example<strong> i<</strong>5 shows 5 links of the feed</li>
</ul>
<h3>Alternate Code </h3>
<p>(tested on various clients blogs)<br />
<code>&lt;ul&gt;<br />
  &lt;?php<br />
error_reporting(0);<br />
$url = "http://feeds.feedburner.com/micro-news";<br />
$xml = simplexml_load_file($url, 'SimpleXMLElement', LIBXML_NOCDATA);<br />
echo $xml;<br />
if ($xml == "")<br />
{<br />
 echo "Feeds are down, Try again later";<br />
}<br />
else<br />
{<br />
$blog = $xml-&gt;channel;<br />
for($i=0; $i&lt;3; $i++) {<br />
?&gt;<br />
 &lt;li&gt;<a href="<?php echo $blog->item[$i]-&gt;link; ?&gt;"&gt;&lt;?php echo $blog-&gt;item[$i]-&gt;title; ?&gt;</a> &lt;/li&gt;<br />
  &lt;?php<br />
}<br />
}<br />
?&gt;<br />
&lt;/ul&gt;</code></p>
<h3>Note</h3>
<p>If you wants to run this php code apart from the WordPress themes i.e in wordpress posts and pages then you need plugins like <a href="http://wordpress.org/extend/plugins/exec-php/">Exec-PHP</a>. Exec-PHP will executes PHP code in posts, pages and text widgets .</p>
<p>This post is dedicated as an answer to <a href="http://www.amitbhawani.com">amitbhawani</a> <a href="http://twitter.com/amitbhawani/status/4759918797">question</a></p>
<blockquote><p>Is there any WordPress Plugin which shows 5 Recent Posts of any Feed in a WordPress Page? Ex :Show my news blog latest posts on about page</p></blockquote>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/" rel="bookmark" title="September 14, 2009">How to hide a categories posts from wordpress RSS Feeds without using any plugin</a></li>

<li><a href="http://www.honeytechblog.com/10-ways-to-increase-your-feed-subscribers/" rel="bookmark" title="February 18, 2009">10 ways to increase your feed subscribers</a></li>

<li><a href="http://www.honeytechblog.com/how-to-display-tag-clouds-without-using-any-wordpress-plugins/" rel="bookmark" title="August 27, 2009">How to display Tag Clouds without using any WordPress Plugins</a></li>

<li><a href="http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/" rel="bookmark" title="September 10, 2009">How to check Broken Links of WordPress Blogs</a></li>

<li><a href="http://www.honeytechblog.com/how-to-add-custom-twitter-updates-in-blogs-using-php/" rel="bookmark" title="May 25, 2010">How to add custom twitter updates in blogs using php</a></li>
</ul><!-- Similar Posts took 13.915 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-show-rss-feeds-in-a-wordpress-page-and-posts/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>How to hide a categories posts from wordpress RSS Feeds without using any plugin</title>
		<link>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/</link>
		<comments>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 17:15:33 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5515</guid>
		<description><![CDATA[Few days back i write a tutorial on how to hide a categories posts from Home page without using any plugin, in the series of that we are going to discuss a way to hide categories from rss feeds without using any plugins. How to hide categories from WordPress Feeds 1.In your current theme(template) files, [...]]]></description>
			<content:encoded><![CDATA[<p>Few days back i write a tutorial on <a title="How to hide categories without using plugin" href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/">how to hide a categories posts from Home page</a> without using any plugin, in the series of that we are going to discuss a way to hide categories from rss feeds without using any plugins.</p>
<h3>How to hide categories from WordPress Feeds</h3>
<h4>1.In your current theme(template) files, open functions.php</h4>
<h4>2.Copy the below mention code in your functions.php file</h4>
<p><code>&lt;?php<br />
function my_cat_exclude($query) {<br />
    if ($query-&gt;is_feed) {<br />
        $query-&gt;set('cat','-ID1,-ID2,-ID3');<br />
    }<br />
    return $query;<br />
}</p>
<p>add_filter('pre_get_posts','my_cat_exclude');<br />
?&gt;</code></p>
<p>add_filter(&#8216;pre_get_posts&#8217;,'my_cat_exclude&#8217;);<br />
?&gt;</p>
<blockquote>
<h3>Where ID= your<a href="http://codex.wordpress.org/Template_Tags/the_category_ID"> categories ID’s</a></h3>
<p><strong>Note:</strong> If  you don’t want to digg into code, use this awesome plugin named as <a title="Advanced Category Excluder" href="http://wordpress.org/extend/plugins/advanced-category-excluder/">Advanced Category Excluder</a> which not only hides the posts from displaying on home page but can also hides the posts from search results, your RSS feed, your category, your recent post, and from web crawlers.
</p></blockquote>
<p><a href="http://www.honeytechblog.com/?attachment_id=4971"><img src="http://i.honeytechblog.com/2009/08/101wordpress.gif" alt="101wordpress.gif" title="101wordpress.gif" width="546" height="196" class="alignleft size-full wp-image-4971" /></a></p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/" rel="bookmark" title="September 11, 2009">How to hide a categories posts from Home page without using any plugin</a></li>

<li><a href="http://www.honeytechblog.com/how-to-add-featured-content-slider-into-wordpress-blog/" rel="bookmark" title="April 3, 2009">How to add featured content slider into wordpress blog</a></li>

<li><a href="http://www.honeytechblog.com/how-to-show-random-posts-without-using-any-wordpress-plugins/" rel="bookmark" title="August 23, 2009">How to show Random posts without using any WordPress plugins</a></li>

<li><a href="http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/" rel="bookmark" title="September 10, 2009">How to check Broken Links of WordPress Blogs</a></li>

<li><a href="http://www.honeytechblog.com/101-wordpress-tips-and-resources/" rel="bookmark" title="August 13, 2009">101 List Of Awesome WordPress Tips and Resources</a></li>
</ul><!-- Similar Posts took 14.035 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to decide the robots.txt for WordPress blogs</title>
		<link>http://www.honeytechblog.com/how-to-decide-the-robots-txt-for-wordpress-blogs/</link>
		<comments>http://www.honeytechblog.com/how-to-decide-the-robots-txt-for-wordpress-blogs/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 20:00:19 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Top 10]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5468</guid>
		<description><![CDATA[Robots.txt is used to define the Robots Exclusion Protocols for the websites. It handles the behaviors of all the robots, bots and web-crawler programs. In a simple words any web-crawler program or bots visiting any website checks for the root file /robots.txt, which defined Exclusion Protocols for that bots. One of the common example of [...]]]></description>
			<content:encoded><![CDATA[<p>Robots.txt is used to define the Robots Exclusion Protocols for the websites. It handles the behaviors of all the robots, bots and web-crawler programs. In a simple words any web-crawler program or bots visiting any website checks for the root file /robots.txt, which defined Exclusion Protocols for that bots. One of the common example of the robots.txt file is defined below<br />
<code>User-agent: *<br />
Disallow: /</code><br />
Where <strong>User-agent:</strong> defines the type of bots and <strong>Disallow</strong> defined the exclusion for particulars or type of url locations.<br />
<strong>User-agent: *</strong> means all types of bots<br />
<strong>Disallow: /</strong> means exclusion for all the files and pages located at websites.<br />
<a href="http://www.honeytechblog.com/how-to-decide-the-robots-txt-for-wordpress-blogs/robots-tips-wordpress/" rel="attachment wp-att-5486"><img src="http://i.honeytechblog.com/2009/09/Robots-Tips-Wordpress.jpg" alt="Robots-Tips-Wordpress" title="Robots-Tips-Wordpress" width="620" height="200" class="aligncenter size-full wp-image-5486" /></a></p>
<h3>How to decide the robots.txt for WordPress blogs</h3>
<p>A common example of <a href="http://www.honeytechblog.com/robots.txt">robots.txt</a> file used at honeytechblog is listed as below<br />
<code>Sitemap: http://www.honeytechblog.com/sitemap.xml</p>
<p>User-Agent: *<br />
Disallow: */?mobi*<br />
Disallow: /wp-admin/<br />
Disallow: /wp-includes/<br />
Disallow: /wp-content/<br />
Disallow: /wp-<br />
Disallow: /*.css$<br />
Disallow: */forums/bb-login.php?*<br />
Allow: twitter.honeytechblog.com</p>
<p>User-agent: Googlebot-Image<br />
disallow: </p>
<p>User-agent: Mediapartners-Google*<br />
disallow: </code></p>
<h3>Explanations of the common exclusions and agent used in the robots.txt files</h3>
<h4>1.<strong>Sitemap:</strong> http://www.honeytechblog.com/sitemap.xml </h4>
<p>Used to define the sitemap location for the bots, these will create ease for search bots to detect your new pages.</p>
<h4>2.<strong>User-Agent: *</strong> </h4>
<p> Already described above </p>
<h4>3.<strong>Disallow: */?mobi*</strong> </h4>
<p> Used to exclude the pages containing &#8220;/?mobi&#8221;. I used this feature to avoid the content duplicacy issues generated for mobile users.( It is not necessary for you )</p>
<h4>4.<strong>Disallow: /wp-admin/</strong> </h4>
<p> Used to exclude the wordpress admin pages from the search engine. It is necessary to avoid the listing of any hack prone page or errors.</p>
<h4>5.<strong>Disallow: /wp-includes/</strong> </h4>
<p> Used to exclude the WordPress includes folder which also necessary to avoid from the searching bots. It is necessary because some times when your WordPress faces any plugins or update issues, it floats a serious errors which can be easily indexed by the search bots or hackers.  </p>
<h4>6.<strong>Disallow: /wp-content/ </strong></h4>
<p> Again it is not necessary to index all the files in the wp-contents.</p>
<h4>7.<strong>Disallow: /wp- </strong></h4>
<p> For security purpose its better hide all the core files and pages. </p>
<h4>8.<strong>Disallow: /*.css$</strong> </h4>
<p>For exclusion of all the style-sheets. (If you want to further protect your css files)<br />
Note: <strong>Disallow: /*.&#8221;fileextension&#8221;$</strong> can be used to exclude the &#8220;file extension&#8221; from the reach of bots. Where &#8220;file extension&#8221; can be any extensions you want like *.txt$,*.php$ ,*.jsp$, or *.jpg$</p>
<h4>9.<strong>Disallow: /*?</strong> </h4>
<p> Used to disallow all the urls having &#8220;?&#8221; in it. (Used to avoid content duplicacy issues, tracking urls and custom features from the reach of bots) </p>
<h4>10.<strong>Disallow: /name/ </strong></h4>
<p> Used to disallow any directory ,folders or categories. for example you want to disallow &#8220;admin&#8221; folder then you can simple use &#8220;<strong>Disallow: /admin/</strong>&#8221; , if you want to disallow a category named &#8220;download&#8221; then you can simply use &#8220;<strong>Disallow:/category/download*</strong>&#8221; and for uncategorized category use can use &#8220;<strong>Disallow: /category/uncategorized</strong>*&#8221;</p>
<h3>Extra:</h3>
<h4>To allow all the images bots (like google image bot) to search and index all images of the website / blog<br />
<h4>
<code>disallow:<br />
Allow: /*.png$<br />
Allow: /*.jpg$<br />
Allow: /*.gif$<br />
Allow: /*.jpeg$<br />
Allow: /*.jpg$<br />
Allow: /*.ico$<br />
Allow: /images/ </code></p>
<h4>To allow all the adsense bot to crawler with ease on entire site<br />
<h4>
<code>User-agent: Mediapartners-Google*<br />
disallow: </code></p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-update-your-blog-to-wordpress-27/" rel="bookmark" title="December 12, 2008">How to update your blog to wordpress 2.7</a></li>

<li><a href="http://www.honeytechblog.com/how-to-redirect-wordpress-com-blog-to-self-hosted-domain/" rel="bookmark" title="July 18, 2009">How to redirect wordpress.com blog to self hosted domain</a></li>

<li><a href="http://www.honeytechblog.com/how-to-optimize-website-loading-time-and-performance/" rel="bookmark" title="July 4, 2009">How to optimize website loading time and performance</a></li>

<li><a href="http://www.honeytechblog.com/wordpress-262-released-how-and-why-to-upgrade-it-now/" rel="bookmark" title="September 9, 2008">WordPress 2.6.2 Released, How and Why to Upgrade it now?</a></li>

<li><a href="http://www.honeytechblog.com/top-26-reasons-to-go-for-wordpress-26/" rel="bookmark" title="June 26, 2008">Top 26 reasons to go for wordpress 2.6</a></li>
</ul><!-- Similar Posts took 46.405 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-decide-the-robots-txt-for-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to hide a categories posts from Home page without using any plugin</title>
		<link>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/</link>
		<comments>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 08:28:27 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5412</guid>
		<description><![CDATA[WordPress is full of possibilities and options but when you wants to use it as exclusive CMS then you need to consider few hacks and patch. There are  many contents on the CMS which is not required to display on the home page, do you have any idea how to fix it without plugins? Today [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is full of possibilities and options but when you wants to use it as exclusive CMS then you need to consider few hacks and patch. There are  many contents on the CMS which is not required to display on the home page, do you have any idea how to fix it without plugins?</p>
<p>Today we are going to discuss a common hacks to hide a categories posts from Home page without any plugin. Follow the following listed process to hides the categories from posts</p>
<h3>A normal index.php page of WordPress theme (i took a default sandbox theme) looks like</h3>
<p><code>&lt;?php get_header() ?&gt;</p>
<p>	&lt;div id="container"&gt;<br />
		&lt;div id="content"&gt;</p>
<p>			&lt;div id="nav-above" class="navigation"&gt;<br />
				&lt;div class="nav-previous"&gt;&lt;?php next_posts_link(__( '<span class="meta-nav">&amp;laquo;</span> Older posts', 'sandbox' )) ?&gt;&lt;/div&gt;<br />
				&lt;div class="nav-next"&gt;&lt;?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&amp;raquo;</span>', 'sandbox' )) ?&gt;&lt;/div&gt;<br />
			&lt;/div&gt;</p>
<p>&lt;?php while ( have_posts() ) : the_post() ?&gt;</code></p>
<h3>Post the below described code after the container (for your theme you can try to post it after header)</h3>
<p><code>&lt;?php if (is_home()) {<br />
query_posts("cat=-ID");<br />
}<br />
?&gt;</code></p>
<h3>For excluding more than one categories use this code</h3>
<p><code>&lt;?php if (is_home()) {<br />
query_posts("cat=-ID1,-ID2,-ID3,ID4");<br />
}<br />
?&gt;</code></p>
<h3>Where ID= your<a href="http://codex.wordpress.org/Template_Tags/the_category_ID"> categories ID&#8217;s</a></h3>
<p><strong>Note:</strong> If  you don&#8217;t want to digg into code, use this awesome plugin named as <a title="Advanced Category Excluder" href="http://wordpress.org/extend/plugins/advanced-category-excluder/">Advanced Category Excluder</a> which not only hides the posts from displaying on home page but can also hides the posts from search results, your RSS feed, your category, your recent post, and from web crawlers.</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/" rel="bookmark" title="September 14, 2009">How to hide a categories posts from wordpress RSS Feeds without using any plugin</a></li>

<li><a href="http://www.honeytechblog.com/how-to-auto-add-excerpt-in-the-wordpress-blog-home-page/" rel="bookmark" title="August 20, 2009">How to auto add excerpt in the wordpress blog home page</a></li>

<li><a href="http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/" rel="bookmark" title="September 10, 2009">How to check Broken Links of WordPress Blogs</a></li>

<li><a href="http://www.honeytechblog.com/how-to-add-featured-content-slider-into-wordpress-blog/" rel="bookmark" title="April 3, 2009">How to add featured content slider into wordpress blog</a></li>

<li><a href="http://www.honeytechblog.com/101-wordpress-tips-and-resources/" rel="bookmark" title="August 13, 2009">101 List Of Awesome WordPress Tips and Resources</a></li>
</ul><!-- Similar Posts took 23.810 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to check Broken Links of WordPress Blogs</title>
		<link>http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/</link>
		<comments>http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 18:47:02 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5376</guid>
		<description><![CDATA[Sometime we have errors in the links because of change in  url locations and sometimes referring links in the posts floats “404 errors”. We also have possibilities that Wikipedia images used in our posts may be deleted, linking sites in the posts  may expire or  may stop working.  All these errors comes under observations when [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime we have errors in the links because of change in  url locations and sometimes referring links in the posts floats “404 errors”. We also have possibilities that Wikipedia images used in our posts may be deleted, linking sites in the posts  may expire or  may stop working.  All these errors comes under observations  when you have an eye over the response of all the urls associated with your blogs. It is quite impossible to check all the links manually if you have more than 1000 posts in your blogs.</p>
<p><a href="http://wordpress.org/extend/plugins/broken-link-checker/">Broken Link Checker</a> is a  WordPress plugin which automatically checks all the post and pages for errors in links and images. It will auto notify about the errors at the WordPress Dashboard. This plugin checks  for the errors within defined interval of time(you can change the time interval from the plugin options)</p>
<h3>Dashboard Demo of the Broken Link Checker</h3>
<p><a href="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerDashboard.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Broken-Link-Checker-Dashboard" src="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerDashboard_thumb.png" border="0" alt="Broken-Link-Checker-Dashboard" width="559" height="151" /></a></p>
<h3>Editing and Management of Broken Link Checker</h3>
<p><a href="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerEdit.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Broken-Link-Checker-Edit" src="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerEdit_thumb.png" border="0" alt="Broken-Link-Checker-Edit" width="620" height="184" /></a></p>
<h3><a href="http://wordpress.org/extend/plugins/broken-link-checker/">Broken Link Checker</a> &#8211; Plugin Options</h3>
<p><a href="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerPluginOptions.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Broken-Link-Checker-Plugin-Options" src="http://i.honeytechblog.com/2009/09/BrokenLinkCheckerPluginOptions_thumb.png" border="0" alt="Broken-Link-Checker-Plugin-Options" width="559" height="481" /></a></p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/broken-link-checker/">Plugin Page</a></li>
<li><a href="http://w-shadow.com/blog/2009/05/22/broken-link-checker-05/">Developer Page</a></li>
</ul>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-home-page-without-any-plugin/" rel="bookmark" title="September 11, 2009">How to hide a categories posts from Home page without using any plugin</a></li>

<li><a href="http://www.honeytechblog.com/how-to-hide-a-categories-posts-from-wordpress-rss-feeds-without-using-any-plugin/" rel="bookmark" title="September 14, 2009">How to hide a categories posts from wordpress RSS Feeds without using any plugin</a></li>

<li><a href="http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/" rel="bookmark" title="May 27, 2010">How to remove trackbacks/pingbacks from wordpress posts without disabling it from dashboard</a></li>

<li><a href="http://www.honeytechblog.com/affiliate-marketing-through-wordpress-tool/" rel="bookmark" title="September 13, 2008">Affiliate Marketing through WordPress Tool</a></li>

<li><a href="http://www.honeytechblog.com/how-to-auto-add-excerpt-in-the-wordpress-blog-home-page/" rel="bookmark" title="August 20, 2009">How to auto add excerpt in the wordpress blog home page</a></li>
</ul><!-- Similar Posts took 15.820 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-check-broken-links-of-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Backup All Your Valuable Comments With BackType</title>
		<link>http://www.honeytechblog.com/how-to-backup-all-your-valuable-comments-with-backtype/</link>
		<comments>http://www.honeytechblog.com/how-to-backup-all-your-valuable-comments-with-backtype/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 20:36:07 +0000</pubDate>
		<dc:creator>Nikita Porwal</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[communicate]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.honeytechblog.com/?p=5323</guid>
		<description><![CDATA[Comments are the most important part of blogging these days – they can be done for fun, sharing information or just to convey gratitude for a great post. Any good post does not wait to be on top of the popularity chart, but of course anticipate knowing what people think about it. Hence, we denote [...]]]></description>
			<content:encoded><![CDATA[<p>Comments are the most important part of blogging these days – they can be done for fun, sharing information or just to convey gratitude for a great post. Any good post does not wait to be on top of the popularity chart, but of course anticipate knowing what people think about it. Hence, we denote comments as “Valuable Material”. Such comments are not only a social action, but also serve the purpose adding more importance to the post. In fact, you can be a good commenter by talking and engaging in discussions on your and various blogs across Web 2.0. We all learn about improving our comments idea via <a href="http://www.honeytechblog.com/list-of-top-35-do-follow-blogs-and-forums-pr-5-and-above/">do-follow blogs and forums</a>, but wouldn’t it be great to consolidate all the information shared? Of course it would be.</p>
<p>Of late, I have got few comments asking on how do I keep track of all my comments under one roof. The two word answer is “BackType Plugin”. “BackType is a real-time, conversational search engine. We index and connect online conversations from across the web in real-time, so you can see what people are saying about topics that interest you”. BackType Plugin is nothing but a “Twitter for Comments” that simply combines comments from various blogs and into a single and searchable stream. In simple term, what BackType does is offer you system to keep up with all comments you have made and also allow you to “follow” other people in order to preserve the comments they leave.<br />
<img class="aligncenter size-full wp-image-5326" title="BackType" src="http://i.honeytechblog.com/2009/09/BackType1.gif" alt="BackType" width="620" height="436" /></p>
<h3><strong>Working with </strong><strong><a href="http://www.backtype.com/">BackType</a></strong></h3>
<p>Working with BackType is as simple as tweeting. You only need to create an account and give your e-mail Id that you use while commenting. That’s it BackType will store all the comments you have made and will make it available to you whenever required. Your profile will accommodate all your approve comments, which can also be shared with other members. Searches for RSS feeds are available and also supports various platforms.</p>
<h3>Exciting Tools and Features</h3>
<p><strong><a href="http://www.backtype.com/connect">BackType Connect</a></strong> – BackType Connect shows you all of the conversation surrounding a post or article. All you need to do is to enter the URL of the post or the page and get the results showing references to that particular article/post around internet.</p>
<p><strong><a href="http://www.backtype.com/plugins/tweetcount">TweetsCount</a></strong> – This is an excellent tool that shows the number of times your posts have been linked on Twitter and let readers retweet.</p>
<p><strong><a href="http://www.backtype.com/alerts">BackType Alerts</a></strong><a href="http://www.backtype.com/alerts"> </a>- BackType Alerts sends you e-mail updates whenever a search term is mentioned in a comment. These Alerts are highly useful for people wanting to track what’s being discussed about them.</p>
<p><strong><a href="http://www.backtype.com/subscriptions">BackType Subscriptio</a></strong><strong><a href="http://www.backtype.com/subscriptions">n</a></strong> &#8211; BackType Subscriptions sends you e-mail updates whenever someone comments on a post you specify. You will receive the updates as they take place on daily or weekly basis. Further you are free to monitor your subscriptions via RSS Feeds. Hey nice one.</p>
<p>Overall BackType service is great and the team has done a solid job!</p>
Similar Posts:<ul><li><a href="http://www.honeytechblog.com/top-25-twitter-tools-for-wordpress/" rel="bookmark" title="November 16, 2008">Top 25 twitter tools for WordPress</a></li>

<li><a href="http://www.honeytechblog.com/how-to-remove-tracbacks-and-pings-from-wordpress-posts/" rel="bookmark" title="May 27, 2010">How to remove trackbacks/pingbacks from wordpress posts without disabling it from dashboard</a></li>

<li><a href="http://www.honeytechblog.com/top-10-social-media-tracking-and-analytics-tools/" rel="bookmark" title="November 27, 2009">Top 10 Social Media Tracking and Analytics Tools</a></li>

<li><a href="http://www.honeytechblog.com/20-easy-ways-to-increase-website-traffic/" rel="bookmark" title="November 11, 2011">20 Easy Ways to Increase Website Traffic</a></li>

<li><a href="http://www.honeytechblog.com/10-most-popular-wordpress-plugins/" rel="bookmark" title="April 29, 2009">10+ Most Popular WordPress Plugins</a></li>
</ul><!-- Similar Posts took 19.762 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.honeytechblog.com/how-to-backup-all-your-valuable-comments-with-backtype/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.017 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 05:34:02 -->

