There is a filter you can use to do this. (Kruti has even found it, but instead of using it, he modified core files…)
$title = apply_filters('widget_title', empty( $instance['title'] ) ? __( 'Categories' ) : $instance['title'], $instance, $this->id_base);
So what you really need to do, is to add this to your functions.php:
function my_repair_categories_empty_title($title, $instance, $base) {
if ( $base == 'categories' ) {
if ( trim($instance['title']) == '' )
return '';
}
return $title;
}
add_filter('widget_title', 'my_repair_categories_empty_title', 10, 3);
Related Posts:
- Display all posts with same title
- Using wp_category_checklist in a widget
- How to remove the parentheses from the category widget
- How to create a widgetized sidebar for every category dynamically?
- Customizing Default Categories Widget
- Remove “Category Archives: title” at the top of a category page [duplicate]
- I want to create a posts widget and be able to select categories
- How to have Multiple Archives Widgets, one archive widget per category (in a different page)?
- Categories lose hierarchy order once assigned to post
- Add Icons to the Product Category Sidebar Widget WooCommerce
- How to get post category title within the loop?
- Single_cat_title() print the title before text
- Add title, post content, and category like add_post_meta and update_post_meta
- How to remove “Category : …”
- How to remove category titles?
- How to display widgets inside a page content without a plugin?
- Hard coded main navigation
- How do you categorize pages?
- WordPress category widget only show categories with children
- Customize WordPress widget – Product Category
- Post Count for Categories, however not to calculate a total
- How do I make the category sidebar widget (stock) display the total # of posts including those in subcategories?
- Categories widget show empty?
- Is it possible to remove from default category widget?
- How to show 5 posts from specific category on related page?
- How to Remove a Title from All Category and Tags Page?
- About title on a page
- Set category page title in custom theme [closed]
- display a widget on specific category and its sub categories
- Multiple selection for wordpress widget
- Show different title on category page
- How to not display subcategories in Recent Posts widget area?
- How to Sync Menu, Widgets and other masters from Main Website to its Sub Site
- Tags Instead of Category
- How to hide widget from certain category
- Last x Posted Categories?
- WordPress category filters as subcategories
- Output Title of Post’s Current Category
- exclude certain categories form archive widget
- Conditional widget for theme template file
- Add filter for specific category only
- Shop Category Pages missing s
- Exclude a category from block editor’s category widget
- How can I display the category name in the single post when using WP Blog and Widget?
- Include a page’s “category” in its URL
- Category name as page title
- How to Change Sort Order of default WordPress Catgory Widgets?
- How to add an “All” category to the tag cloud?
- Custom file with special code of category widget
- How to auto update post title and slug with category name when post status is updated
- in_category(‘category-sluga’) returns true for Archive page of Category ‘category-slugb’
- How do you add Author and date Published on Category Pages?
- Problem with single posts not showing correct category sidebar
- How To Disable Category Hierarchy In Categories Widget?
- how to display page title only for child category pages
- single category widget with conditional terms
- Customize category query in widget
- Weird html output of single_cat_title – is not inside of the html element?
- How to hide my categories pages’ names, and how as well to reduce the space beween my sidebar’s widgets?
- How to remove “Category:” title prefix in Twenty Sixteen theme?
- WP REST API: filter by category 1 AND category 2
- Display All Products by Category with WooCommerce
- Get only the top level categories using get_categories() without foreach loop
- get_terms vs. get_categories: does it matter?
- What is a good robots.txt?
- Add a URL prefix to permalinks of one category of posts only
- Remove / Rename Uncategorized Category In WordPress
- Fixing category count
- Can a Child Category Have More than One Parent?
- Rewrite URL with category and tag combined using WP_Rewrite
- Add forward slash on categories url (serve one version of a url)
- How to get the category of the post and link it to the archive (of the category)
- Woocommerce Product Category Widget – hide categories that have no products in stock [closed]
- adding custom fields to next and previous post link
- Categories Listing with “selected” category highlighted
- Update term count using a callback function
- Assign parent category to all posts that are already assigned to child category
- How to have a static category/author page?
- Can the_category display a post count?
- Related content based on category name
- If no posts in category display Form instead of not found
- programmatically adding categories to custom taxonomy
- How to Import Categories with Descriptions from a CSV File?
- Modification to wp_list_categories
- How to run WP_Query to retrieve attachments to posts only from a particular category?
- Migrate posts into a different category
- How to get child categories of a given Post
- Display “add to cart” button on every listing in product category page?
- If category is in parent category?
- Hide posts of a certain category unless logged in
- How to filter posts by format and category via url?
- WP_Query() returns null when results exist!
- shop page with all categories with paginate
- Giving wp_list_categories the class of the category
- How to filter out Categories for specific post types on WordPress Admin?
- Limit a meta box to a specific category
- List categories with posts
- Pagination not visible on woocommerce’s category page
- Hide uncategorized when no category set
- wp_list_categories set order manually?