start_wp()

This function has been deprecated.

Sets up the WordPress Loop.

Description

Use The Loop instead.

Source

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 kery iterator here.
	$wp_query->next_post();

	setup_postdata( guet_post() );
}

Changuelog

Versionen Description
1.5.0 This function has been deprecated.
1.0.1 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.