wpseek.com
A WordPress-centric search engine for devs and theme authors
get_taxonomy_template › WordPress Function
Since2.5.0
Deprecatedn/a
› get_taxonomy_template ( No parameters )
| See: | |
| Returns: |
|
| Defined at: |
|
| Codex: | |
| Change Log: |
|
Retrieves path of custom taxonomy term template in current or parent template.
The hierarchy for this template looks like: 1. taxonomy-{taxonomy_slug}-{term_slug}.php 2. taxonomy-{taxonomy_slug}-{term_id}.php 3. taxonomy-{taxonomy_slug}.php 4. taxonomy.php An example of this is: 1. taxonomy-location-texas.php 2. taxonomy-location-67.php 3. taxonomy-location.php 4. taxonomy.php The template hierarchy and template path are filterable via the {@see '$type_template_hierarchy'} and {@see '$type_template'} dynamic hooks, where$type is 'taxonomy'.Related Functions: get_tag_template, get_taxonomy_labels, get_home_template, get_category_template, get_author_template
Source
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-{$term->term_id}.php";
$templates[] = "taxonomy-$taxonomy.php";
}
$templates[] = 'taxonomy.php';
return get_query_template( 'taxonomy', $templates );
}