WordPress Version: 4.7
/**
* Retrieve path of paged template in current or parent template.
*
* @since 1.5.0
* @deprecated 4.7.0 The paged.php template is no longer part of the theme template hierarchy.
*
* @return string Full path to paged template file.
*/
function get_paged_template()
{
_deprecated_function(__FUNCTION__, '4.7.0');
return get_query_template('paged');
}