get_paged_template(): string

In this article

This function has been deprecated. The paged.php template is no longer part of the theme template hierarchy instead.

Retrieve path of paged template in current or parent template.

Return

string Full path to paged template file.

Source

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

	return get_query_template( 'paged' );
}

Changelog

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

User Contributed Notes

You must log in before being able to contribute a note or feedback.