get_taxonomy_template

函数
get_taxonomy_template ( No parameters )
返回值
  • (string) Full path to custom taxonomy term template file.
相关
  • get_query_template()
定义位置
相关方法
get_tag_templateget_taxonomy_labelsget_home_templateget_category_templateget_author_template
引入
2.5.0
弃用
-

get_taxonomy_template: 这个函数检索分类法档案模板文件的路径。它接受一个参数:要检索模板的分类法名称。它以字符串形式返回模板文件的路径。

在当前或父模板中检索自定义分类法术语模板的路径。

这个模板的层次结构看起来像:

1. taxonomy-{taxonomy_slug}-{term_slug}.php
2. taxonomy-{taxonomy_slug}.php
3. taxonomy.php

这方面的一个例子是:

1. taxonomy-location-texas.php
2. taxonomy-location.php
3. taxonomy.php

模板层次和模板路径可通过{@see ‘$type_template_hierarchy’}和{@see ‘$type_template’}动态钩子过滤。和{@see ‘$type_template’}动态钩子,其中`$type`是’taxonomy’。

function get_taxonomy_template() {
	$term = get_queried_object();

	$templates = array();

	if ( ! empty( $term->slug ) ) {
		$taxonomy = $term->taxonomy;

		$slug_decoded = urldecode( $term->slug );
		if ( $slug_decoded !== $term->slug ) {
			$templates[] = "taxonomy-$taxonomy-{$slug_decoded}.php";
		}

		$templates[] = "taxonomy-$taxonomy-{$term->slug}.php";
		$templates[] = "taxonomy-$taxonomy.php";
	}
	$templates[] = 'taxonomy.php';

	return get_query_template( 'taxonomy', $templates );
}

常见问题

FAQs
查看更多 >