Rewind the loop posts.
Source
function rewind_posts() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return;
}
$wp_query->rewind_posts();
}
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |
Rewind the loop posts.
function rewind_posts() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return;
}
$wp_query->rewind_posts();
}
Version | Description |
---|---|
1.5.0 | Introduced. |
You must log in before being able to contribute a note or feedback.
Basic Example
Example with custom query migrated from Codex