Changeset 814 for trunk/wp-includes/template-functions-general.php
- Timestamp:
- 01/31/2004 12:03:51 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-general.php
r801 r814 66 66 // If there's a category 67 67 if(!empty($cat)) { 68 $title = stripslashes(get_the_category_by_ID($cat)); 68 if (!stristr($cat,'-')) { // category excluded 69 $title = stripslashes(get_the_category_by_ID($cat)); 70 } 69 71 } 70 72 if (!empty($category_name)) {
Note: See TracChangeset
for help on using the changeset viewer.