the_comment

函数


the_comment ( No parameters )
定义位置
  • wp-includes/query.php
    , line 1037
引入
2.2.0
弃用

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

function the_comment() {
	global $wp_query;

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

	$wp_query->the_comment();
}