Uses
Uses | Description |
---|---|
wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
wp-includes/template.php: get_query_template() | Retrieve path to a template |
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.
(string) Full path to paged template file.
File: wp-includes/deprecated.php
function get_paged_template() { _deprecated_function( __FUNCTION__, '4.7.0' ); return get_query_template( 'paged' ); }
Version | Description |
---|---|
4.7.0 | The paged.php template is no longer part of the theme template hierarchy. |
1.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_paged_template