WordPress Version: 6.1
/**
* Rewind the loop posts.
*
* @since 1.5.0
*
* @global WP_Query $wp_query WordPress Query object.
*/
function rewind_posts()
{
global $wp_query;
if (!isset($wp_query)) {
return;
}
$wp_query->rewind_posts();
}