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