在循环外调用WordPress文章评论数
function add_comment_count_to_posts() {
global $wpdb, $post;
$id = $post->ID;// 文章ID
$comment_count = $wpdb->get_var( "SELECT comment_count FROM $wpdb->posts WHERE post_status = 'publish' AND ID = $id" );// 获取文章评论数
$comment_status = $wpdb->get_var( "SELECT comment_status FROM $wpdb->posts WHERE ID = $id" );// 文章是否开启了评论
$html = '<div class="comment-popup">';
$html .= '<span>';
$count = '';
if( $comment_status == 'open' ) {
$count = $comment_count;
} else {
$count = '评论关闭';
}
$html .= $count . '</span></div>';
return $html;
}
获取某文章最新一条评论日期:
$comment_args = array(
'post_id' => get_the_ID(),
'number' => 1,
);
$latest_comment = get_comments($comment_args);
echo $latest_comment[0]->comment_date;
© 版权声明
NOTICE
2048074778@qq.com | Copyright © 2020~2026
01
DISCLAIMER
本站资源大多来自网络,如有侵犯权益请联系管理员,我们会第一时间审核删除。站内资源仅供学习测试,未经许可禁止商用,请在24小时内删除。
02
VIP PRIVILEGE
遇到付费内容?升级终身VIP即可全站免费畅享所有资源,也可以站内私信联系进行开通。
聊天QQ群:461848201
THE END














暂无评论内容