Guest User

Untitled

a guest
Jun 29th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. $comments = get_comments( array( 'number' => 10 ) );
  2.  
  3. if ( !empty( $comments ) ) {
  4.  
  5. ?>
  6.  
  7. <ul>
  8.  
  9. <?php foreach ( $comments as $comment ) : ?>
  10.  
  11. <li><?php echo sprintf(
  12.  
  13. "<strong>%s</strong> on <a href="%s">%s</a> : "%s" &mdash; <a href="%s">view</a>",
  14. $comment->comment_author,
  15. get_the_permalink( $comment->comment_post_ID ) . "#comment-" . $comment->comment_ID,
  16. get_the_title( $comment->comment_post_ID ),
  17. mb_strlen( $comment->comment_content ) > 100 ? mb_substr($comment->comment_content, 0, 100) . " .." : $comment->comment_content,
  18. get_the_permalink( $comment->comment_post_ID ) . "#comment-" . $comment->comment_ID
  19.  
  20. ); ?></li>
  21.  
  22. <?php endforeach; ?>
  23.  
  24. </ul>
  25.  
  26. <?php
  27.  
  28. } else {
  29. echo sprintf("<p>%s</p>", "No comments were found.");
  30. }
Add Comment
Please, Sign In to add comment