In this tutorial i will show you how to add floating social icons to Thesis WordPress .Copy and paste this code for the floating social icons into your Custom Functions. Note: Always take a backup before any type of modification. [php] // Make the URL to share if( is_singular() ) { $url = get_permalink(); $text […]
Using Loops and Pagination in WordPress
Using loops you can show wordpress content.If you want to show the full content for the first two posts and then just the excerpt for the rest then this code is for you. [php] <?php $page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; query_posts("paged=$page&posts_per_page=5"); ?> <?php $count = 1; // Sets count to 1 on first […]