Changeset 6091
- Timestamp:
- 09/12/2007 02:53:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/category-template.php
r6026 r6091 242 242 'child_of' => 0, 'feed' => '', 243 243 'feed_image' => '', 'exclude' => '', 244 'hierarchical' => true, 'title_li' => __('Categories') 244 'hierarchical' => true, 'title_li' => __('Categories'), 245 'echo' => 1 245 246 ); 246 247 … … 291 292 $output .= '</ul></li>'; 292 293 293 echo apply_filters('wp_list_categories', $output); 294 $output = apply_filters('wp_list_categories', $output); 295 296 if ( $echo ) 297 echo $output; 298 else 299 return $output; 294 300 } 295 301
Note: See TracChangeset
for help on using the changeset viewer.