Skip to content

Instantly share code, notes, and snippets.

@NearlyNormal
NearlyNormal / gist:e4776787c4d6a60b9ebb
Last active August 29, 2015 14:04
Wordpress recent posts with comment count in sidebar template
<?php
$args = array(
'orderby' => 'date'
,'order' => 'DESC'
,'showposts'=>6
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {