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



wp_reset_postdata › WordPress Function

Seit3.0.0
Veraltetn/v
wp_reset_postdata ( Keine Parameter )
Definiert in:
Codex:

After looping through a separate query, this function restores the $post global to the current post in the main query.



Quellcode

function wp_reset_postdata() {
	global $wp_query;

	if ( isset( $wp_query ) ) {
		$wp_query->reset_postdata();
	}
}