Whenever you post an article you would like it to be re-distributed, shared and re-twitted thousand of times. To accomplish this is very important to make it very easy to share content on your website. Many visitors will like your website but if the sharing process is complicated they will never share what you write.

The sharing should not involve more than one click. The easiest way to allow users to share your content is to show a like button for every article on your website. Like I have on my website:

People only have to click the “Like” button and your article will appear on their facebook wall. In the same time they can see how many people liked the article so they can know that the content is worth to read or to share.

To add the like button to your website you have only to insall a simple lightweight plugin called FBLike. You can select where to display the like button, before content or below content. You can also set the colors and the verb to display: “Like” or “Recommend”. This is how the fblike administration page looks like:

I like it to have the standard view, light color scheme, and to display it anywhere: individual posts, individual pages, home page, search results, tag pages, archive pages. You can select not to display it on certain areas.

Something else you can add to your blog to make it easy to share is to add the facebook and twitter share button. They can look like this:

I think facebook, twitter and digg are the most important places where you would like your work to be shared. I display the buttons only on single posts are displayed, at the top of them. I experienced and that is the place where most people tend to click to share when they like an article.

To add the buttons I don’t use any specific plugin, I simply write the code into the single.php template. To make it easy for you I will share the code I use with you.

Here is what you have to do to add facebook, twitter and digg buttons to your website:

1. Go to Appearahce->Editor and select to edit Single Post Template ( single.php ) file

2. Before this code <?php the_content(‘Read more &raquo;’); ?> add the following:

<div>
<div>
<a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
</div>
<div>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
</div>
<div>
<script src="http://widgets.digg.com/buttons.js" type="text/javascript"></script>
<a></a>
</div>
</div>
<div style="clear: both;"></div>

3. Then open the Stylesheet file ( styles.css ) and add the following at the bottom:

.share_but { padding: 5px; float: left; }

4. Don’t forget to save the pages you edited and you’re done. Refresh your browser to see the results.