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