Changeset 5289 for branches/2.2/wp-includes/theme.php
- Timestamp:
- 04/19/2007 10:26:52 PM (19 years ago)
- File:
-
- 1 edited
-
branches/2.2/wp-includes/theme.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-includes/theme.php
r5149 r5289 329 329 } 330 330 331 function get_tag_template() {332 $template = '';333 if ( file_exists(TEMPLATEPATH . "/tag-" . get_query_var('tag') . '.php') )334 $template = TEMPLATEPATH . "/tag-" . get_query_var('tag') . '.php';335 elseif ( file_exists(TEMPLATEPATH . "/tag.php") )336 $template = TEMPLATEPATH . "/tag.php";337 338 return apply_filters('tag_template', $template);339 }340 341 342 331 function get_date_template() { 343 332 return get_query_template('date');
Note: See TracChangeset
for help on using the changeset viewer.