繁体   English   中英

如何通过查询限制评论数

[英]how to limit number of comments by query

我想限制要在wordpress template-page.php中显示的评论的数量,但在Google搜索中没有得到任何结果。 我想使用jquery来解决此问题,但我知道的是wordpress。 不完整的PHP。

我认为您可以使用WP_Comment_Query

尝试以下方法。 尽管这是基本的,您可以根据需要对其进行自定义。

打开您的functions.php文件并添加以下函数

function get_custom_comments(){

    $args = array(
   'number' => '1', // number of comments you want to show
);
$comments_query = new WP_Comment_Query;
$comments = $comments_query->query( $args );
if ( $comments ) {
    foreach ( $comments as $comment ) {
        echo '<p>' . $comment->comment_content . '</p>';
    }
} else {
    echo 'No comments found.';
}

现在,在您的single.php文件中,将所有注释模板替换为以下内容

get_custom_comments();

PS:添加一些CSS类,使其看起来像您的原始注释模板。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM