
Untitled
By: a guest on
Dec 23rd, 2012 | syntax:
PHP | size: 0.47 KB | hits: 4 | expires: Never
function NewCoupons($num=5){
global $wpdb;
$STRING = "";
$query = array (
'posts_type' => 'post',
'orderby' => 'date',
'order'=> 'DESC'
);
$posts = new WP_Query($query);
foreach($posts as $post){
$STRING .="<li><a href='".get_permalink($post->ID)."'>".$post->post_title."</a> - <em>".get_post_meta($post->ID, 'hits', true)." ".$GLOBALS['_LANG']['_tpl_edit_b3']."</em></li>";
}
wp_reset_query();
print $STRING;
}