the_comment

函数
the_comment ( No parameters )
定义位置
相关方法
have_commentscheck_commentthe_contentget_commentedit_comment
引入
2.2.0
弃用
-

the_comment – 这个函数用来显示一个单独的评论。它接收一个评论对象作为参数,并输出该评论的HTML标记。

在评论循环中遍历评论索引。

function the_comment() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return;
	}

	$wp_query->the_comment();
}

常见问题

FAQs
查看更多 >