wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



start_wp › WordPress Function

Da1.0.1
Deprecato1.5.0
start_wp ( Nessun parametro )
Links:
Definito a:
Codex:

Sets up the WordPress Loop.

Use The Loop instead.


Sorgenti

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() );
}