Sharing helpful, user-friendly tutorials to help you master your computer.

WordPress

WordPress Code Snippet: Display Latest Comment Excerpt Per Post on index.php

by Steve in WordPress

I first got the idea for this useful WordPress code snippet whilst browsing video gaming blog Destructoid. Basically, I wanted to extract the latest comment from each post and display a short excerpt of it on the... Read more »

WordPress Code Snippet: Display Total Number of Posts

by Steve in WordPress

Just a quick and dirty code snippet which basically allows you to display the total number of posts which have been published on your blog: <?php $numpost = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts... Read more »