start_wp

函数


start_wp ( No parameters )
定义位置
  • wp-includes/deprecated.php
    , line 61
引入
1.0.1
弃用
1.5.0

设置WordPress循环。

用The Loop代替。

function start_wp() {
	global $wp_query;

	_deprecated_function( __FUNCTION__, '1.5.0', __('new WordPress Loop') );

	// Since the old style loop is being used, advance the query iterator here.
	$wp_query->next_post();

	setup_postdata( get_post() );
}