rachael-portier
9/19/2019 - 1:35 PM

Remove Title from Categories Dropdown Widget

// 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' );