Query posts by last comments

时间:2015-03-12 作者:Shady M Rasmy

如何按最新评论查询帖子,就像这里发生的事情一样,如果有人对来自黑暗时代的帖子发表评论,它会弹出到顶部。

1 个回复
SO网友:Pouriya Amjadzadeh

我觉得这对你有帮助

$args = array (
\'status\' => \'approve\',
\'number\' => \'5\'
);
$comments = get_comments( $args );
if ( !empty( $comments ) ) :
echo \'<ul>\';
foreach( $comments as $comment ) :
echo \'<li><a href="\' . get_permalink( $comment->comment_post_ID ) . \'#comment-\' . $comment->comment_ID . \'">\' . $comment->comment_author . \' on \' . get_the_title( $comment->comment_post_ID ) . \'</a></li>\';
endforeach;
echo \'</ul>\';
endif;

结束

相关推荐

如何重新组织wp_list_Comments()返回的项?

我对WordPress主题开发和学习很陌生,我会创建自己的新主题我想重新组织返回的项目wp_list_comments().我创建了comments.php 在我的主题文件夹中-<div id=\"comments\"> <ol class=\"commentlist\"> <?php $comments = get_comments(array( \'post_i