Raindrops1.492でアーカイブウィジェットの件数の表示が変更になります。デフォルトのカッコつきの表示に戻す場合、以下のフィルターを使うことが出来ます。
add_action( 'after_setup_theme', 'my_raindrops_theme_setup', 11 ); if ( !function_exists( 'my_raindrops_theme_setup' ) ) { function my_raindrops_theme_setup(){ remove_filter( 'wp_list_categories', 'raindrops_category_link_fomat' ); remove_filter( 'get_archives_link','raindrops_archive_link_format' ); } }