影者东升 发表于 2021-7-16 12:12:47

wordpress获取当前文章的评论数实现代码

有时候,为了需要,是要获取wordpress当前文章的评论数,要想获取文章的评论数必须要知道当前文章的id,怎么获取当前文章的id和文章评论数呢?
比如说,循环某一分类的文章:

代码如下:
<?php $posts = get_posts( "category=9&numberposts=5" ); ?>
<?php if( $posts ) : ?>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<?php $id=$post->ID; echo get_post($id)->comment_count;?>
<?php endforeach; ?>
<?php endif; ?>

如上红色部分,通过$post->ID获取当前文章的id,然后通过get_post($id)->comment_count获取当前文章的评论数。
文档来源:脚本之家https://www.jb51.net/cms/67251.html
页: [1]
查看完整版本: wordpress获取当前文章的评论数实现代码