wpseek.com
A WordPress-centric search engine for devs and theme authors



rewind_posts › WordPress Function

Since1.5.0
Deprecatedn/a
rewind_posts ( No parameters )
Defined at:
Codex:

Rewind the loop posts.



Source

function rewind_posts() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return;
	}

	$wp_query->rewind_posts();
}