get_paged_template
Retrieve path of paged template in current or parent template.
Description
(string) get_paged_template();
Returns (string)
Full path to paged template file.
Usage
if ( !function_exists( 'get_paged_template' ) ) { require_once ABSPATH . WPINC . '/deprecated.php'; } // NOTICE! Understand what this does before running. $result = get_paged_template();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/deprecated.php
- function get_paged_template() {
- _deprecated_function( __FUNCTION__, '4.7.0' );
- return get_query_template( 'paged' );
- }