// Remove title from Categories dropdown widget
function _category_dropdown_filter( $cat_args ) {
$cat_args['show_option_none'] = __('Browse by Category');
return $cat_args;
}
add_filter( 'widget_categories_dropdown_args', '_category_dropdown_filter' );