wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_taxonomy_template › WordPress Function
Seit2.5.0
Veraltetn/v
› get_taxonomy_template ( Keine Parameter )
| Siehe: | |
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
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'.Ähnliche Funktionen: get_tag_template, get_taxonomy_labels, get_home_template, get_category_template, get_author_template
Quellcode
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 );
}