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



the_post › WordPress Function

Since1.5.0
已弃用n/a
the_post ( 没有参数 )
定义在:
文档:

Iterate the post index in the loop.



源码

function the_post() {
	global $wp_query;

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

	$wp_query->the_post();
}