Advertisement
Neolot

Статьи из категории

Jan 28th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. // Статьи из категории
  2. function nlt_getPosts($catID='',$count=5){
  3.     $data = new WP_Query(array(
  4.         'cat' => (integer)$catID,
  5.         'showposts' => $count,
  6.         'post__not_in' => get_option('sticky_posts'),
  7.     ));
  8.     if ( $data->have_posts() ) {
  9.         $output = '<ul>';
  10.         while ($data->have_posts()) {
  11.             $data->the_post();
  12.             $output .= sprintf('<li><a href="%s">%s</a></li>', get_permalink(), get_the_title());
  13.         }
  14.         $output .= '</ul>';
  15.     wp_reset_postdata();
  16.         echo $output;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement