get_archive_template()
Retrieve path of archive template in current or parent template.
描述
The template hierarchy is filterable via the ‘archive_template_hierarchy’ hook. The template path is filterable via the ‘archive_template’ hook.
返回值
(string) Full path to archive template file.
源代码
File: wp-includes/template.php
function get_archive_template() {
$post_types = array_filter( (array) get_query_var( 'post_type' ) );
$templates = array();
if ( count( $post_types ) == 1 ) {
$post_type = reset( $post_types );
$templates[] = "archive-{$post_type}.php";
}
$templates[] = 'archive.php';
return get_query_template( 'archive', $templates );
}
更新日志
Version | 描述 |
---|---|
1.5.0 | Introduced. |
相关函数
Uses
-
wp-includes/query.php:
get_query_var() -
wp-includes/template.php:
get_query_template()
Used By
-
wp-includes/template.php:
get_post_type_archive_template()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈