WordPress函数文档get_archive_template()
获取归档页面模版文件archive.php 描述 译文 在当前模板或父模板中检索存档模板路径 原文 Retri…
获取归档页面模版文件archive.php
描述
译文
在当前模板或父模板中检索存档模板路径
原文
Retrieve path of archive template in current or parent template.
用法
<?php get_archive_template(); ?>
参数
None.
返回值
(string)
Returns result from get_query_template(‘archive’)
注意
- 使用到: get_query_template()
Filters
- 调用 ‘archive_template’ 过滤器 on found path:
apply_filters(‘archive_template’, $template)
历史
添加于 版本: 1.5.0
源文件
get_archive_template() 函数的代码位于 wp-includes/template.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Retrieve path of archive template in current or parent template.
*
* The template path is filterable via the dynamic {@see ‘$type_template’} hook,
* e.g. ‘archive_template’.
*
* @since 1.5.0
*
* @see get_query_template()
*
* @return string Full path to archive template file.
*/
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 );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/get_archive_template
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!