Definition:
function get_tag_template() {}
Retrieve path of tag template in current or parent template.
Works by first retrieving the current tag name, for example ‘tag-wordpress.php’ and then trying tag ID, for example ‘tag-1.php’ and will finally fallback to tag.php template, if those files don’t exist.
Source code
function get_tag_template() { $tag = get_queried_object(); $templates = array(); $templates[] = "tag-{$tag->slug}.php";
1727
No comments yet... Be the first to leave a reply!