Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2012
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. function NewCoupons($num=5){
  2.  
  3.  
  4.         global $wpdb;
  5.         $STRING = "";
  6.    
  7.         $query = array (
  8.         'posts_type' => 'post',
  9.         'orderby' => 'date',
  10.         'order'=> 'DESC'
  11.         );
  12.         $posts = new WP_Query($query);
  13.  
  14.         foreach($posts as $post){
  15.  
  16.         $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>";
  17.        
  18.         }
  19.  
  20.         wp_reset_query();
  21.        
  22.         print $STRING;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement