WordPress Version: 5.3
/**
* After looping through a separate query, this function restores
* the $post global to the current post in the main query.
*
* @since 3.0.0
*
* @global WP_Query $wp_query WordPress Query object.
*/
function wp_reset_postdata()
{
global $wp_query;
if (isset($wp_query)) {
$wp_query->reset_postdata();
}
}