Changeset 2045
- Timestamp:
- 01/04/05 23:29:13 (4 years ago)
- Files:
-
- trunk/wp-includes/template-functions-category.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/template-functions-category.php
r1997 r2045 61 61 } 62 62 63 function the_category($sep erator = '', $parents='') {63 function the_category($separator = '', $parents='') { 64 64 $categories = get_the_category(); 65 65 if (empty($categories)) { … … 69 69 70 70 $thelist = ''; 71 if ('' == $sep erator) {71 if ('' == $separator) { 72 72 $thelist .= '<ul class="post-categories">'; 73 73 foreach ($categories as $category) { … … 98 98 foreach ($categories as $category) { 99 99 $category->cat_name = $category->cat_name; 100 if (0 < $i) $thelist .= $sep erator . ' ';100 if (0 < $i) $thelist .= $separator . ' '; 101 101 switch(strtolower($parents)) { 102 102 case 'multiple':
