groups

name language licence
SHOW DIFFERENT AMOUNT OF POSTS ON WORDPRESS HOME PAGE THAN OTHER PAGES PHP BSD
ANAGE MULTIPLE WORDPRESS SITES WITH ONE DATABASE AND ONE CODE BASE PHP BSD
WORDPRESS QUERY POSTS OF CERTAIN CUSTOM FIELD VALUES PHP BSD
WORDPRESS LOAD JQUERY PHP BSD
WORDPRESS GET CONTENT PHP BSD
WORDPRESS: LATEST POSTS FROM CATEGORY PHP BSD
WORDPRESS QUERY POST FOR A SPECIFIC PAGE PHP BSD
Social bookmarking of posts PHP BSD

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



language: PHP
licence: BSD

Social bookmarking of posts

options: view full snippetsend to code collector
Social bookmarking of posts

//This will add links for the bookmarking of your posts in del.icio.us, Spurl and Furl as well as track incoming links from Technorati. The Sociable WordPress plugin automates this but I prefer doing it using template tags. I should update the link because I spotted one site that will allow you to submit to all these social bookmarking services.

· <a href="http://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php echo htmlentities(the_title()); ?>">Del.icio.us</a> · <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=<?php echo htmlentities(the_title()); ?>&u=<?php the_permalink() ?>">YahooMyWeb</a> · <a href="http://www.spurl.net/spurl.php?url=<?php the_permalink() ?>&title=<?php echo htmlentities(the_title()); ?>">Spurl</a> · <a href="http://www.furl.net/storeIt.jsp?url=<?php the_permalink() ?>&title=<?php echo htmlentities(the_title()); ?>">Furl</a> · <a href="http://www.technorati.com/search/<?php the_permalink() ?>">Incoming links</a>
	
(Continues...)