Limit to 5
git-svn-id: https://develop.svn.wordpress.org/trunk@10080 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d31387d674
commit
69719e8945
|
@ -411,9 +411,13 @@ function wp_dashboard_recent_comments() {
|
|||
|
||||
<div id="the-comment-list" class="list:comment">
|
||||
<?php
|
||||
$count = 0;
|
||||
foreach ( $comments as $comment ) {
|
||||
if ( $count >= 5 )
|
||||
break;
|
||||
if ( in_array($comment->comment_approved, $allowed_states) )
|
||||
_wp_dashboard_recent_comments_row( $comment );
|
||||
$count++;
|
||||
}
|
||||
?>
|
||||
|
||||
|
|
Loading…
Reference in New Issue