<?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>Blogging Secret</title>
	<atom:link href="http://www.blogging-secret.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blogging-secret.com</link>
	<description>make money, wordpress themes, blogging basics and tips and more</description>
	<lastBuildDate>Wed, 25 Aug 2010 17:56:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to Display Most Recent Twitter Tweets in WordPress Blog</title>
		<link>http://www.blogging-secret.com/how-to-display-most-recent-twitter-tweets-in-wordpress-blog</link>
		<comments>http://www.blogging-secret.com/how-to-display-most-recent-twitter-tweets-in-wordpress-blog#comments</comments>
		<pubDate>Wed, 25 Aug 2010 17:56:31 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=927</guid>
		<description><![CDATA[Since Twitter became popular, many bloggers like to display recent twitter tweets on their website or blog. To display most recent twitter tweets, simply copy and paste the following code to your sidebar.php file. &#60;?php // Your twitter username. $username = "TwitterUsername"; // Prefix - some text you want displayed before your latest tweet. // [...]]]></description>
			<content:encoded><![CDATA[<p>Since Twitter became popular, many bloggers like to display recent twitter tweets on their website or blog. <strong>To display most recent twitter tweets</strong>, simply copy and paste the following code to your <em>sidebar.php</em> file.</p>
<pre><code>&lt;?php
// Your twitter username.
$username = "TwitterUsername";
// Prefix - some text you want displayed before your latest tweet.
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")
$prefix = "";
// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
$suffix = "";
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&amp;rpp=1";
function parse_feed($feed) {
$stepOne = explode("&lt;content type=\"html\"&gt;", $feed);
$stepTwo = explode("&lt;/content&gt;", $stepOne[1]);
$tweet = $stepTwo[0];
$tweet = str_replace(”&amp;lt;”, “&lt;”, $tweet);
$tweet = str_replace(”&amp;gt;”, “&gt;”, $tweet);
return $tweet;
}
$twitterFeed = file_get_contents($feed);
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);
?&gt;</code></pre>
<p>Thanks the awesome code from <a href="http://wphacks.com/huge-compilation-of-wordpress-code">WP Hacks</a>.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-display-most-recent-twitter-tweets-in-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Highlight Author’s Comments</title>
		<link>http://www.blogging-secret.com/how-to-highlight-authors-comments</link>
		<comments>http://www.blogging-secret.com/how-to-highlight-authors-comments#comments</comments>
		<pubDate>Wed, 25 Aug 2010 17:55:28 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=925</guid>
		<description><![CDATA[There are 2 ways to highlight author&#8217;s comments, one is use highlight author comments wordpress plugin, another idea is without wordpress plugin. If you don&#8217;t want to use wordpress plugin to highlight author&#8217;s comment, you can follow the below few simple steps. First, you need to open styles.css and add the following into this file. [...]]]></description>
			<content:encoded><![CDATA[<p>There are 2 ways <strong>to highlight author&#8217;s comments</strong>, one is use <a></a>highlight author comments wordpress plugin, another idea is without wordpress plugin. If you don&#8217;t want to use wordpress plugin to highlight author&#8217;s comment, you can follow the below few simple steps.</p>
<p>First, you need to open <em>styles.css</em> and add the following into this file.</p>
<pre><code>.authorstyle { background-color: #B3FFCC !important; }</code></pre>
<p>Second, open <em>comments.php</em>, find and locate the following code.</p>
<pre><code>&lt;li &lt;?php echo $oddcomment; ?&gt;id="comment-&lt;?php comment_ID() ?&gt;"&gt;&lt;/li&gt;</code></pre>
<p>And then replace with</p>
<pre><code>&lt;li class="&lt;?php if ($comment-&gt;user_id == 1) $oddcomment = "authorstyle"; echo $oddcomment; ?&gt;"&gt;&lt;/li&gt;</code></pre>
<p>Please note that you must change <strong>1</strong> to the user id of the author. Thanks to <a href="http://www.mattcutts.com/blog/highlight-author-comments-wordpress">Matt Cutts</a> for this tutorial.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-highlight-authors-comments/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Exclude Certain Categories</title>
		<link>http://www.blogging-secret.com/how-to-exclude-certain-categories</link>
		<comments>http://www.blogging-secret.com/how-to-exclude-certain-categories#comments</comments>
		<pubDate>Wed, 25 Aug 2010 17:54:37 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=923</guid>
		<description><![CDATA[There are 2 ways to exclude certain categories from your blog, one is use wordpress plugin named Advanced Category Excluder. This plugin was born because there was a no other real alternative to enable content sparationd and some CMS like functionalities in WordPress. The main goal was, to enhance WordPress’s functionalities, to hide some unwanted [...]]]></description>
			<content:encoded><![CDATA[<p>There are 2 ways <strong>to exclude certain categories from your blog</strong>, one is use wordpress plugin named <a href="http://wordpress.org/extend/plugins/advanced-category-excluder"></a>Advanced Category Excluder. This plugin was born because there was a no other real alternative to enable content sparationd and some CMS like functionalities in WordPress. The main goal was, to enhance WordPress’s functionalities, to hide some unwanted categories, from defined parts of the blog.</p>
<p>The alternative way is without plugin, you can add the below code inside <a href="http://codex.wordpress.org/The_Loop">the loop</a> then it will work.</p>
<pre><code>&lt;?php
if ( have_posts() ) : query_posts($query_string .'&amp;cat=-1,-2'); while ( have_posts() ) : the_post();
?&gt;</code></pre>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-exclude-certain-categories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Things to Do If WordPress Plugins Broken Your WordPress Blog</title>
		<link>http://www.blogging-secret.com/4-things-to-do-if-wordpress-plugins-broken-your-wordpress-blog</link>
		<comments>http://www.blogging-secret.com/4-things-to-do-if-wordpress-plugins-broken-your-wordpress-blog#comments</comments>
		<pubDate>Fri, 06 Aug 2010 09:01:27 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=919</guid>
		<description><![CDATA[What will you do if wordpress plugin broken your wordpress blog? I believe that most people have experienced this problem before, and how you overcome your problem? I remember when my wordpress blog was unable displayed properly after installed particular wordpress plugin, so I deleted all the wordpress files, wordpress themes, wordpress plugins, and then [...]]]></description>
			<content:encoded><![CDATA[<p>What will you do if wordpress plugin broken your wordpress blog? I believe that most people have experienced this problem before, and how you overcome your problem? I remember when my wordpress blog was unable displayed properly after installed particular wordpress plugin, so I deleted all the wordpress files, wordpress themes, wordpress plugins, and then I upload all the files again. Anyway, it is work fine finally.</p>
<p>If you <strong>can’t display your wordpress blog after installed particular wordpress plugin</strong>, you can follow the below steps to solve this problem.</p>
<p><strong>1. De-active the Plugin</strong><br />
Try to de-active the wordpress plugin that you have installed just now.</p>
<p><strong>2. Rename the Plugin via FTP</strong><br />
If it is crash by admin area and caused you can&#8217;t de-active the plugins, then you can rename the plugins via FTP.</p>
<p><strong>3. Delete the Plugin via FTP</strong><br />
If simply renaming the plugin was not enough, try to delete it completely.</p>
<p><strong>4. De-activate all the plugins via PHPMyAdmin</strong><br />
Some plugins will alter tables in your WordPress database when you activate them. As a result your blog might keep crashing even after you delete the plugins via FTP.</p>
<p>If that is the case, you will need to log into cPanel, and open the PHPMyAdmin interface. Then select the WordPress database, and browse inside the “wp-options” table. Look for the “active_plugins” column, and edit it. Inside the “options_value” field you will find something like this:</p>
<pre><code>a:31:{i:0;s:13:"AddMySite.php";i:1;s:19:"akismet/akismet.php";
i:2;s:23:"all_in_one_seo_pack.php";i:3;s:16:"authenticate.php";
i:4;s:28:"breadcrumb-navigation-xt.php";i:5;s:18:
"codeautoescape.php";i:6;s:37:</code></pre>
<p>These lines represent the active plugins in your blog. Delete them all and save. This should automatically de-activate every plugin. Now check if your blog is live again, and if the admin area is working. They should be.</p>
<p>/// <a href="http://www.dailyblogtips.com/a-plugin-broke-your-wordpress-blog-here-is-what-to-do">Source</a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/4-things-to-do-if-wordpress-plugins-broken-your-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Bad Experience of Changing Web Hosting Company</title>
		<link>http://www.blogging-secret.com/my-bad-experience-of-changing-web-hosting-company</link>
		<comments>http://www.blogging-secret.com/my-bad-experience-of-changing-web-hosting-company#comments</comments>
		<pubDate>Thu, 15 Jul 2010 03:24:56 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/my-bad-experience-of-changing-web-hosting-company</guid>
		<description><![CDATA[Since it is time to renew my web hosting recently, I have decided to change new web hosting company, unfortunately that I’m not satisfied the requirement of that new web hosting package. The price of this hosting package is attractive and much cheaper than other popular hosting packages, and the price is included unlimited hosting [...]]]></description>
			<content:encoded><![CDATA[<p>Since it is time to renew my web hosting recently, I have decided to <strong>change new web hosting</strong> company, unfortunately that I’m <strong>not satisfied</strong> the requirement of that new web hosting package. The price of this hosting package is attractive and much cheaper than other popular hosting packages, and the price is included unlimited hosting space, unlimited data transfer, host unlimited domains, and etc. Sound great, right? </p>
<p>What I need from a web host is pretty good enough to satisfy me, some more this hosting package is cheap with good features. But, when the time I use FTP to upload and download files, I found that it is slow than my previous hosting packages. Hmmm, whether you realize it or not, cheap thing no good, good thing no cheap. Therefore, I have asked for money back because this hosting company provides anything <strong>money back guarantee.</strong> After contacted their people, I got back my money, thanks god!</p>
<p>Although my previous hosting package is slightly expensive than this hosting package as mentioned above, but I rather to use back their service because I’m satisfied with their technical support and server uptime all along. The purpose I have changed new hosting company because I was thinking whether I can find other attractive hosting package with competitive price. </p>
<p>I’m <strong>using back my previous hosting</strong> now! Anyway, if there is any other hosting package that satisfy my requirement in future, I’m willing to give it a try!</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/my-bad-experience-of-changing-web-hosting-company/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP Cache &#8211; Speed Up Your Blog Pages Loading</title>
		<link>http://www.blogging-secret.com/wp-cache-speed-up-your-blog-pages-loading</link>
		<comments>http://www.blogging-secret.com/wp-cache-speed-up-your-blog-pages-loading#comments</comments>
		<pubDate>Thu, 15 Jul 2010 01:55:02 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=915</guid>
		<description><![CDATA[If you have problem with hosting service or your wordpress blog has taken lots of time for loading, perhaps you can consider to install WP Cache wordpress plugin to generate static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively [...]]]></description>
			<content:encoded><![CDATA[<p>If you have problem with hosting service or your wordpress blog has taken lots of time for loading, perhaps you can consider to install <a href=http://wordpress.org/extend/plugins/wp-super-cache/>WP Cache wordpress plugin</a> to <strong>generate static html files from your dynamic WordPress blog</strong>. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.</p>
<p>My web hosting is quite reliable,so far  I don&#8217;t think I will need this plugin at this moment. If you need to speed up the loading of your blog and your blog always hit Digg.com’s frontpage, then you are encourage to activate this plugin.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/wp-cache-speed-up-your-blog-pages-loading/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Display Random Posts on Your Sidebar</title>
		<link>http://www.blogging-secret.com/how-to-display-random-posts-on-your-sidebar</link>
		<comments>http://www.blogging-secret.com/how-to-display-random-posts-on-your-sidebar#comments</comments>
		<pubDate>Thu, 15 Jul 2010 01:54:04 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=913</guid>
		<description><![CDATA[Many readers seldom browse through our old post to read them out, but installing wordpress plugins like Pagenavi and Related Posts can help to give a new life for your old posts. There is another way to make your old posts have a good chance to read by reader, that is to display random posts [...]]]></description>
			<content:encoded><![CDATA[<p>Many readers seldom browse through our old post to read them out, but installing wordpress plugins like Pagenavi and Related Posts can help to give a new life for your old posts. There is another way to make your old posts have a good chance to read by reader, that is <strong>to display random posts on your sidebar</strong>.</p>
<p>To display random posts on your sidebar, simply copy and paste the following code to your <em>sidebar.php</em>.</p>
<pre><code>&lt;?php
query_posts(array('orderby' =&gt; 'rand', 'showposts' =&gt; 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_title();
the_excerpt();
endwhile;
endif; ?&gt;</code></pre>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-display-random-posts-on-your-sidebar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display Feedburner Subscribers in Plain Text</title>
		<link>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text</link>
		<comments>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text#comments</comments>
		<pubDate>Tue, 29 Jun 2010 09:20:00 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=910</guid>
		<description><![CDATA[Feedburner came with feed count banner, but if you think this banner doesn&#8217;t match your website design or you want to display Feedburner subscribers in plain text, this is possible! Copy and paste the following code into your template, for example sidebar.php, replace feedburner-id with your Feedbuner username. This script will grab you the feed [...]]]></description>
			<content:encoded><![CDATA[<p>Feedburner came with feed count banner, but if you think this banner doesn&#8217;t match your website design or you want to <strong>display Feedburner subscribers in plain text</strong>, this is possible!</p>
<p>Copy and paste the following code into your template, for example <em>sidebar.php</em>,  replace <strong>feedburner-id</strong> with your Feedbuner username. This script will grab you the feed count in numbers.</p>
<pre><code>//get cool feedburner count
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id";

//Initialize the Curl session
$ch = curl_init();

//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

//Set the URL
curl_setopt($ch, CURLOPT_URL, $whaturl);

//Execute the fetch
$data = curl_exec($ch);

//Close the connection
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml-&gt;feed-&gt;entry['circulation'];
//end get cool feedburner count</code></pre>
<p>Now paste this anywhere you want and it’ll display a Feedburner subscriber count in text.</p>
<pre><code>echo $fb;</code></pre>
<p><a href="http://www.hongkiat.com/blog/how-to-display-feedburner-subscriber-count-in-text">Source</a> from Hongkiat</p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 My Favorite Windows 7 Desktop Wallpapers</title>
		<link>http://www.blogging-secret.com/10-my-favorite-windows-7-desktop-wallpapers</link>
		<comments>http://www.blogging-secret.com/10-my-favorite-windows-7-desktop-wallpapers#comments</comments>
		<pubDate>Tue, 29 Jun 2010 06:07:51 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=898</guid>
		<description><![CDATA[Windows 7 has lots of new features and that&#8217;s why I love it a lot than Windows Vista that I used previously. Since I was using Windows 7, I like to find spectacular new wallpapers online because Windows 7 has included a slew of new windows desktop background-wallpapers. The new desktop slide show, which displays [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 7 has lots of new features and that&#8217;s why I love it a lot than Windows Vista that I used previously. Since I was using Windows 7, I like to find <strong>spectacular new wallpapers</strong> online because Windows 7 has included a slew of new windows desktop background-wallpapers. The new desktop slide show, which displays a rotating series of pictures makes our desktop never be dull again. </p>
<p>You can visit <a href=http://windows.microsoft.com/en-us/windows/downloads/personalize>Personalized Gallery</a> to download free Windows 7 themes and desktop wallpapers. However, I have several pretty Windows wallpapers to share with you, there are my favorite. </p>
<p><a href=http://www.flickr.com/photos/33296674@N06/3248721591/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-3.jpg border=0 width=540></a></p>
<p><a href=http://havocki.deviantart.com/art/Windows-SEVEN-87298678><img src=hhttp://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-8.jpg border=0 width=540></a></p>
<p><a href=http://hongki.at/images/windows_seven_wallpapers/windows7_wallpapers.zip><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-9.jpg border=0 width=540></a></p>
<p><a href=http://neosmart.net/gallery/v/wallpapers/Win7/Official/Windows+7+Mountain.jpg.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-4.jpg border=0 width=540></a></p>
<p><a href=http://neosmart.net/gallery/v/wallpapers/Win7/Official/Seljalandsfoss+Falls.jpg.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-5.jpg border=0 width=540></a></p>
<p><a href=http://neosmart.net/gallery/v/wallpapers/Win7/Official/Altai+Mountain.jpg.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-6.jpg border=0 width=540></a></p>
<p><a href=http://neosmart.net/gallery/v/wallpapers/Win7/Official/Wheat+Fields.jpg.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-7.jpg border=0 width=540></a></p>
<p><a href=http://rehsup.deviantart.com/art/Windows-7-85995324><img src=http://www.blogging-secret.com/wp-content/uploads/2010/06/windows7-10.jpg border=0 width=540></a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/10-my-favorite-windows-7-desktop-wallpapers/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 Recommended Social Bookmarking WordPress Plugins to Share Your Posts</title>
		<link>http://www.blogging-secret.com/15-recommended-social-bookmarking-wordpress-plugins-to-share-your-posts</link>
		<comments>http://www.blogging-secret.com/15-recommended-social-bookmarking-wordpress-plugins-to-share-your-posts#comments</comments>
		<pubDate>Mon, 24 May 2010 08:56:03 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Traffic Building]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=875</guid>
		<description><![CDATA[There are lots of social bookmarking wordpress plugin available on the net, but I only recommend 15 social bookmarking wordpress plugin as below. If you want to increase your blog traffic, choose one of the following plugin to install on your blog right now. 1. SocioFluid &#8211; Icons for major Social Bookmarking websites, blogger widget [...]]]></description>
			<content:encoded><![CDATA[<p>There are lots of social bookmarking wordpress plugin available on the net, but I only recommend 15 social bookmarking wordpress plugin as below. If you want to increase your blog traffic, choose one of the following plugin to install on your blog right now. </p>
<p>1. <a href=http://www.sociofluid.com/>SocioFluid</a> &#8211; Icons for major Social Bookmarking websites, blogger widget and wordpress plugin are available.</p>
<p><a href=http://www.sociofluid.com/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/sociofluid.jpg border=0 alt="sociofluid" class=noborder></a></p>
<p>2. <a href=http://yoast.com/wordpress/sociable/>Sociable</a> &#8211; a plugin which adds social media buttons to your posts, and does so easily, and beautifully.</p>
<p><a href=http://yoast.com/wordpress/sociable/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/sociable.jpg border=0 alt="sociable" class=noborder></a></p>
<p>3. <a href=http://www.addtoany.com/>Add to Any</a> &#8211; Help your visitors share, save and subscribe to your content with AddToAny widgets.</p>
<p><a href=http://www.addtoany.com/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/addtoany.jpg border=0 alt="add to any" class=noborder></a></p>
<p>4. <a href=http://www.freetellafriend.com/get_button/>FreeTellaFriend</a> &#8211;  is a free service to allow your visitors to share your website with their friends using a click of a button. Once you placed our button on your pages, your visitors can click the button and start sharing. It&#8217;s much quicker than the traditional way.</p>
<p><a href=http://www.freetellafriend.com/get_button/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/tellafriend.jpg border=0 alt="free tell a friend" class=noborder></a></p>
<p>5. <a href=http://www.milienzo.com/wordpress-plugins/i-love-social-bookmarking/>I Love Social Bookmarking</a> &#8211;  is a simple WordPress plugin that allows your readers to submit your content to social media services via a clutter-free drop-down list of attractive icons.</p>
<p><a href=http://www.milienzo.com/wordpress-plugins/i-love-social-bookmarking/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/ilovesocialbookmarking.jpg border=0 alt="i love social bookmarking" class=noborder></a></p>
<p>6. <a href=http://sharethis.com/publishers/getbutton/wordpress/>ShareThis</a> &#8211; provides a simple way for users to add your post to many social bookmarking sites, or to send a link to your post via email, AIM, Facebook, Twitter and more.</p>
<p><a href=http://sharethis.com/publishers/getbutton/wordpress/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/sharethis.jpg border=0 alt="sharethis" class=noborder></a></p>
<p>7. <a href=http://www.tevine.com/projects/socialdropdown/>Social Drop Down</a> &#8211; displays several social bookmarking options in a dropdown. Unlike other social bookmarking displays, this does not cause clutter and takes up little screen space.</p>
<p><a href=http://www.tevine.com/projects/socialdropdown/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/socialdropdown.jpg border=0 alt="social drop down" class=noborder></a></p>
<p>8. <a href=http://wordpress.org/extend/plugins/addtothis/>Add to This</a> &#8211;  is for bookmarking your post into stumble,technorati, digg and delicious. You have to do nothing but just activate the plugin. It automatically add the bookmarking options just below to your posts.</p>
<p><a href=http://wordpress.org/extend/plugins/addtothis/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/addtothis.jpg border=0 alt="add to this" class=noborder></a></p>
<p>9. <a href=http://www.gara.com/projects/bookmarkify/>Bookmarkify</a> &#8211; lets you put social bookmarking links in your posts and other pages.  Help your readers promote your blog and watch your traffic grow.</p>
<p><a href=http://www.gara.com/projects/bookmarkify/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/bookmarkify.jpg border=0 alt="Bookmarkify" class=noborder></a></p>
<p>10. <a href=http://www.dountsis.com/projects/social-bookmarks>Social Bookmarks</a> &#8211; add a list of XHTML compliant graphic links at the end of your posts that allow your visitors to easily submit them in a number of different social bookmarking sites. It features an AJAX front-end interface.</p>
<p><a href=http://www.dountsis.com/projects/social-bookmarks><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/socialbookmark.jpg border=0 alt="social bookmark" class=noborder></a></p>
<p>11. <a href=http://blog.maybe5.com/?page_id=94>Social Links</a> &#8211;  is a sidebar widget that displays icon links to your profile pages on other social networking sites. You can see it in action here on the right hand side of my blog.</p>
<p><a href=http://blog.maybe5.com/?page_id=94><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/sociallinks.jpg border=0 alt="social links" class=noborder></a></p>
<p>12. <a href=http://wordpress.org/extend/plugins/17fav-bookmark-share/>17fav Bookmark &#038; Share</a> &#8211; allows users to add your post to many social bookmarking and share sites.</p>
<p><a href=http://wordpress.org/extend/plugins/17fav-bookmark-share/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/17fav.jpg border=0 alt="social bookmark reloaded" class=noborder></a></p>
<p>13. <a href=http://sozial-bookmark.phpwelt.net/wordpress-plugin.html>SociBook</a> &#8211; add bookmark links of Del.icio.us, Digg it, Slashdot, RawSugar, Yahoo! MyWeb, and many other links to your wordpress. You can decide which bookmark services you want to show and in what order. You also can define, a own iconset.</p>
<p><a href=http://sozial-bookmark.phpwelt.net/wordpress-plugin.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/socibook.jpg border=0 alt="socibook" class=noborder></a></p>
<p>14. <a href=http://www.valent-blog.eu/social-bookmarking-reloaded/>The Social Bookmarking RELOADED</a> &#8211; for WordPress adds a list of XHTML compliant graphic links at the end of your posts and/or pages that allow your visitors to easily submit them in a number of social bookmarking sites.</p>
<p><a href=http://www.valent-blog.eu/social-bookmarking-reloaded/><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/reloaded.jpg border=0 alt="social bookmark reloaded" class=noborder></a></p>
<p>15. <a href=http://www.tecnologiadiaria.com/2008/04/knxdt-bookmarks-wordpress-plugin.html>KnxDT Bookmarks</a> &#8211; add social bookmarks (social bookmarking services) to your posts. Social bookmarks are a feature of Web 2.0 that allow you to send content to be valued and shared by an entire community.</p>
<p><a href=http://www.tecnologiadiaria.com/2008/04/knxdt-bookmarks-wordpress-plugin.html><img src=http://www.blogging-secret.com/wp-content/uploads/2010/05/knxdt.jpg border=0 alt="knxdt bookmark" class=noborder></a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/15-recommended-social-bookmarking-wordpress-plugins-to-share-your-posts/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
