wordpress获取当前文章的评论数实现代码
wordpress获取当前文章的评论数实现代码
发布时间:2016-12-23 来源:查字典编辑
摘要:有时候,为了需要,是要获取wordpress当前文章的评论数,要想获取文章的评论数必须要知道当前文章的id,怎么获取当前文章的id和文章评论...

有时候,为了需要,是要获取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获取当前文章的评论数。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新WordPress学习
热门WordPress学习
CMS教程子分类