Changeset 1444 for trunk/wp-includes/template-functions-category.php
- Timestamp:
- 06/22/2004 01:42:24 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions-category.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-category.php
r1435 r1444 100 100 if ($category->category_parent) $thelist .= get_category_parents($category->category_parent, TRUE); 101 101 $thelist .= '<a href="' . get_category_link(0, $category->category_id, $category->category_nicename) . '" title="' . sprintf(__("View all posts in %s"), $category->cat_name) . '">'.$category->cat_name.'</a>'; 102 break; 102 103 case 'single': 103 104 $thelist .= '<a href="' . get_category_link(0, $category->category_id, $category->category_nicename) . '" title="' . sprintf(__("View all posts in %s"), $category->cat_name) . '">'; 104 105 if ($category->category_parent) $thelist .= get_category_parents($category->category_parent, FALSE); 105 106 $thelist .= "$category->cat_name</a>"; 107 break; 106 108 case '': 107 109 default:
Note: See TracChangeset
for help on using the changeset viewer.