groups

name language licence
featured sliding content PHP BSD
How to change the default Wordpress excerpt PHP BSD
Display an External RSS Feed PHP BSD
WORDPRESS STATIC HTML TEMPLATE PHP BSD
CUSTOM TEMPLATES FOR POSTS IN WORDPRESS PHP BSD
WORDPRESS: LATEST POSTS FROM CATEGORY PHP BSD
Better more link PHP BSD
WORDPRESS INCLUDE PAGE CONTENT PHP BSD

< 1 2 >



language: PHP
licence: BSD

Better more link

options: view full snippetsend to code collector
Better more link

//Some templates still use just More to link to the full article. To replace this with Continue reading “title of the blog post.”

//Replace the_content with
<?php the_content("Continue reading '" . the_title('', '', false) . "'"); ?>

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...)