Changeset 9599 for trunk/wp-includes/category-template.php
- Timestamp:
- 11/10/2008 09:57:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r9518 r9599 65 65 if ( $category->parent == $category_id ) // recursive recursion 66 66 $category->parent = 0; 67 68 if ( $parent = $category->parent ) 69 $category_nicename = get_category_parents( $parent, false, '/', true ) . $category_nicename; 67 elseif ($category->parent != 0 ) 68 $category_nicename = get_category_parents( $category->parent, false, '/', true ) . $category_nicename; 70 69 71 70 $catlink = str_replace( '%category%', $category_nicename, $catlink );
Note: See TracChangeset
for help on using the changeset viewer.