There are nearly 8,087 plugins in the Worpress .org site and many of them are useful from different point of views. So does that means that you should just go and install all of them. “Plugins can extend WordPress to do almost anything you can imagine” and this statement is enough for many to just go and start downloading and installing all the plugins that they want without even thinking what could be result of installing so many plugins could do. Using many plugins can slow down your blog performance, reason being, more number of queries from plugins.
Yes, Plugins are important because of their functionality but if there are alternatives to plugins then why not use them to get your work done. Using Manual code to replace wordpress plugin is a much better way.
In this post I will be highlighting the manual codes that we can use to create share buttons for Retweet, Digg, Buzz, DesignFloat, StumbleUpon, FShare, Delicious, DZone, Reddit, Technoraiti.
How to use
For Wordpress Blog Paste the following code in your theme folders single.php file and for your website paste it on proper place where you want to display.
Retweet Counter
Add a retweet counter on your posts with Tweetmeme
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/
button.js"></script>
The Digg Button
<a class="DiggThisButton"> (<img src="http://digg.com/img/diggThis.png"
height="80" width="52" alt="DiggThis" />)</a>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript">
</script>
StumbleUpon
<a href="http://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>
&title=<?php the_title(); ?>"><img src="http://cdn.stumble-upon.com/
images/32x32_su_solid.gif" alt="StumbleUpon.com"/></a>
Delicious
<img src="http://static.delicious.com/img/delicious.small.gif"
height="10" width="10" alt="Delicious" />
<a href="http://delicious.com/save" onclick="window.open(http://
delicious.com/save?v=5&noui&jump=close&url=+encodeURIComponent(<?php
the_permalink() ?>)+&title=+encodeURIComponent(<?php the_title() ?>
), wouldelicious, oolbar=no,width=550,height=550); return false;">
Bookmark this on Delicious</a>
DZone
<script language="javascript" src="http://widgets.dzone.com/links/
widgets/zoneit.js"></script>
DesignFloat
design_float_buttonFor use with Wordpress powered blogs, replace “Your URL Here” with <?php the_permalink() ?>
<script type="text/javascript">submit_url = Your URL Here;</script>
<script type="text/javascript" src="http://www.designfloat.com/evb2/
button.php"></script>
fShare
<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>
Mixx
<a href="http://www.mixx.com/" onclick="window.location=http://
www.mixx.com/submit?page_url=+window.location; return false;"><img
src="http://www.mixx.com/images/buttons/mixx-button4.png" alt=
"Add to Mixx!" border="0" /></a>
Reddit
<a href="http://www.reddit.com/submit" onclick="window.location =
http://www.reddit.com/submit?url= +encodeURIComponent(window.location);
return false"> <img src="http://www.reddit.com/static/spreddit1.gif"
alt="submit to reddit" border="0" /> </a>
Technorati
<a href="http://technorati.com/faves?sub=addfavbtn&add=http://
nameofmyblog.wordpress.com"><img src="http://static.technorati.com/
pix/fave/tech-fav-1.png" alt="Add to Technorati Favorites" /></a>
change “nameofmyblog” with the actual name of your blog.
Buzz
<script type="text/javascript" src="http://d.yimg.com/ds/badge2.in.js"
badgetype="logo">ARTICLEURL</script>
New Additions
Blog Engage
<script type="text/javascript">submit_url = "<?php the_permalink();
?>";</script><script src="http://blogengage.com/evb/button.php">
</script>
Original Source:http://artatm.com/2010/01/add-social-bookmarking-buttons-in-your-wordpress-blog-without-plugins/
Related Stuff
Google Buzz Button Wordpress Plugin ReleasedIf you are looking for a Google Buzz button to add into your Wordpress site then we have released the first Wordpress plugin exclusively ...
Plug And Play Ecommerce With Wordpress PluginsSince 2003 Wordpress has slowly been gaining popularity amongst the elite of the internet, the bloggers. It is one of those few things ...
Add Google Search to Your WordPress BlogThe native WordPress search does not return very relevant results, thus it makes a lot of sense to add Google Search into your WordPress ...
Add More Sidebars to Your WordPress ThemeYou can add more than one sidebar section to your WordPress site. For example, with the stc-intermountain.org site, I added a whole bunch ...
Series Posting in WordpressIn my functions.php file, I have some code which implements series posting. This relies on the thematic ...
