Changeset 3899
- Timestamp:
- 06/22/2006 03:55:03 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r3880 r3899 360 360 $cats = get_categories("type=link&orderby=$category_orderby&order=$category_order&hierarchical=0"); 361 361 foreach ( (array) $cats as $cat ) { 362 $r['category'] = $cat->cat_ID; 362 363 $bookmarks = get_bookmarks($r); 363 364 if ( empty($bookmarks) ) 364 365 continue; 365 366 $output .= "<li id=\"linkcat-$cat->cat_ID\">$title_before$cat->cat_name$title_after\n\t<ul>\n"; 366 $r['category'] = $cat->cat_ID;367 367 $output .= _walk_bookmarks($bookmarks, $r); 368 368 $output .= "\n\t</ul>\n</li>\n";
Note: See TracChangeset
for help on using the changeset viewer.