WordPress Version: 6.5
/**
* Sets up the WordPress Loop.
*
* Use The Loop instead.
*
* @link https://developer.wordpress.org/themes/basics/the-loop/
*
* @since 1.0.1
* @deprecated 1.5.0
*
* @global WP_Query $wp_query WordPress Query object.
*/
function start_wp()
{
global $wp_query;
_deprecated_function(__FUNCTION__, '1.5.0', __('new WordPress Loop'));
// Since the old style loop is being used, advance the query iterator here.
$wp_query->next_post();
setup_postdata(get_post());
}