Advertisement
Neolot

Последние комментарии

Jan 28th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. // Последние комментарии
  2. function nlt_getComments($count=5){
  3.     $args = array(
  4.         'status' => 'approve',
  5.         'number' => $count
  6.     );
  7.     $comments = get_comments($args);
  8.     $output = '<ul>';
  9.     foreach ($comments as $comment){
  10.         $output .= sprintf('<li><a href="%s"><span>%s:</span> %s</a></li>', get_permalink($comment->comment_post_ID).'#disqus_thread', $comment->comment_author, get_the_title($comment->comment_post_ID));
  11.     }
  12.     $output .= '</ul>';
  13.     echo $output;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement