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?
- List all subcategories from category
- Display all posts in category, with specific tag posts at top
- How to Set an Individual Homepage for Each User?
- Woocommerce – Get product category 2nd level category
- Hide post meta data on a specific category
- How can I get an tag to wrap each ancestor that gets outputted in this condition?
- How to prevent empty category to list content of sub categories?
- “Reversable” and “Re-useable” Subcategories (or other taxonomic structure)
- Creating gallery with taxonomy images plugin?
- Full text articles in the rss feed (i.e. without the more tag)
- Solution for ascending order in a category
- Why do my categories redirect?
- Restoring default article pagination on archives – Removing custom limits
- Applying A Category to Existing Posts Where Page Title Matches Regex
- how to get child category title and image
- How to display all the categories a post is in
- Should I use “Categories ” or “Pages” for a WordPress Static Site (A non blog site)?
- How do I query_posts in cat=1 AND not in cat=2
- Display single category name in woocommerce loop
- Array: What is this value based on?
- WordPress list categories dropdown with parent-child relation and child under it’s parent
- How to Link to Most Recent Custom Post of Same Term
- WP REST API not retrieving all categories
- Category page not showing
- Change RSS format for specific categories
- Displaying a custom field in Category Archives
- List post only under the category, exclude child category content
- Detect category choice for posts with multiple categories
- Redirect Problems with Archive Page and GET variables
- Different size video display for category page (smaller) & detail page (larger)
- Adding tinymce to Custom Field boxes on Category edit page
- Display the articles of a category by role
- Remove “Category:” from Post meta
- Dynamically creating content on custom URL without getting 404
- Category foreach Paging
- One category not displaying template updates
- How to display only category of blog without custom code?
- Form Value of drop down category + Translation of ‘show option none’
- How to display posts by author in a separate page, other than author.php?
- One color to category link depending on category ID
- Show subcategories and hide posts or show posts if not exists subcategories