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. |
CARVIEW |
Rewind the loop posts.
function rewind_posts() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return;
}
$wp_query->rewind_posts();
}
Uses | Description |
---|---|
WP_Query::rewind_posts()wp-includes/class-wp-query.php | Rewinds the posts and resets post index. |
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