wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



start_wp › WordPress Function

Seit1.0.1
Veraltet1.5.0
start_wp ( Keine Parameter )
Links:
Definiert in:
Codex:

Sets up the WordPress Loop.

Use The Loop instead.


Quellcode

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