wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_comment › WordPress Function

Since2.2.0
已弃用n/a
the_comment ( 没有参数 )
定义在:
文档:

Iterate comment index in the comment loop.



源码

function the_comment() {
	global $wp_query;

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

	$wp_query->the_comment();
}