// Handle link category sorting.
$direction = 'ASC';
if ( str_starts_with( $order, '_'
) ) { $direction = 'DESC';
$order =
substr($order,1
);
} if ( !
isset($direction) ) $direction = '';
$cats =
get_categories(array
('type' => 'link', 'orderby' =>
$order, 'order' =>
$direction, 'hierarchical' => 0
));
// Display each category.
if ( $cats ) { foreach ( (array) $cats as $cat ) { // Handle each category.
// Display the category name.
echo ' <li id="linkcat-' .
$cat->term_id . '" class="linkcat"><h2>' .
apply_filters('link_category',
$cat->name
) . "</h2>\n\t<ul>\n";
// Call get_links() with all the appropriate params.
get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false
);