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



wp_reset_postdata › WordPress Function

Da3.0.0
Deprecaton/a
wp_reset_postdata ( Nessun parametro )
Definito a:
Codex:

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



Sorgenti

function wp_reset_postdata() {
	global $wp_query;

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