当前位置:首页>网站建设>在循环外调用WordPress文章评论数

在循环外调用WordPress文章评论数

释放双眼,带上耳机,听听看~!

在循环外调用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;
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
网站建设

无法显示WordPress主题的404页面

2023-11-21 9:46:57

网站建设

WordPress 使用 CDN 后获取访客真实 IP

2024-1-27 9:47:59

温馨提示:

1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:971318156@qq.com,我们将第一时间处理!

2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。

3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索