' . __('Tag Archives') . '';
echo '
';
$tags = get_tags('orderby=count&number=5&order=DESC');
foreach ( (array) $tags as $tag )
echo '- ' . $tag->name . ' (' . $tag->count . ')
';
echo '
';
} elseif ( isset( $_GET['archives-type'] ) && 'cats' == $_GET['archives-type'] ) {
echo '' . __('Category Archives') . '
';
echo '';
wp_list_categories('title_li=&show_count=1&orderby=count&order=DESC');
echo '
';
} elseif ( isset( $_GET['archives-type'] ) && 'months' == $_GET['archives-type'] ) {
echo '' . __('Monthly Archives') . '
';
echo '';
wp_get_archives('type=monthly');
echo '
';
} else {
?>