get_paged_template()
Устарела с версии 4.7.0 The paged.php template is no longer part of the theme template hierarchy.. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Retrieve path of paged template in current or parent template.
Хуков нет.
Возвращает
Строку
. Full path to paged template file.
Использование
get_paged_template();
Список изменений
С версии 1.5.0 | Введена. |
Устарела с 4.7.0 | The paged.php template is no longer part of the theme template hierarchy. |
Код get_paged_template() get paged template WP 6.7.1
function get_paged_template() { _deprecated_function( __FUNCTION__, '4.7.0' ); return get_query_template( 'paged' ); }