get_paged_template()WP 1.5.0

Deprecated since 4.7.0 The paged.php template is no longer part of the theme template hierarchy.. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

Retrieve path of paged template in current or parent template.

No Hooks.

Returns

String. Full path to paged template file.

Usage

get_paged_template();

Changelog

Since 1.5.0 Introduced.
Deprecated since 4.7.0 The paged.php template is no longer part of the theme template hierarchy.

get_paged_template() code WP 6.9

function get_paged_template() {
	_deprecated_function( __FUNCTION__, '4.7.0' );

	return get_query_template( 'paged' );
}