我想限制在wordpress template-page.php中显示的评论数量 我在谷歌搜索中没有得到任何结果。 我想使用jquery来解决这个问题,但我所知道的是wordpress。没有完整的PHP。
答案 0 :(得分:0)
我认为您可以使用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类,使其看起来像是原始的评论模板。