Hide "Uncategorized" Category in Divi Breadcrumbs Module

Written by Dan Mossop

My Divi Breadcrumbs Module allows you to display breadcrumbs links on your Divi site. By default, the breadcrumb links for a post include the WordPress category to which the post is assigned. However, when a post isn't explicitly assigned to a category, WordPress puts it in a category named "Uncategorized". Divi Breadcrumbs Module will display this category name the same as any other category, but if you'd like to prevent the "Uncategorized" link from showing up, you can use this PHP code:

add_filter('et_pb_dmb_breadcrumbs_crumbs', 'dbc_remove_uncategorized_breadcrumb');

function dbc_remove_uncategorized_breadcrumb($crumbs) {
	if (is_single() && is_array($crumbs)) {
		foreach ($crumbs as $id=>$crumb) {
			if (isset($crumb['text']) && $crumb['text'] === 'Uncategorized') {
				unset($crumbs[$id]);
			}
		}
	}
	return $crumbs;
}

We may earn a commission when you visit links on our website.

Enhance Your Divi Breadcrumb Experience

Improve your site's navigation with the Divi Breadcrumbs Module, allowing you to hide the 'Uncategorized' category effortlessly. Simplify your breadcrumb trails and optimize user experience with our easy-to-use module.

Latest Posts

Hide Navigation Arrows in the Divi Gallery Slider Layout

Create a cleaner, distraction-free gallery by hiding the navigation arrows in Divi’s Gallery module when using the Slider layout. This is ideal when you want images to take center stage, reduce visual clutter, or rely on gesture or keyboard navigation instead of...

Customize Lightbox Title Styling in the Divi Gallery Module

Adjust the appearance of the lightbox title that appears when visitors open images from a Divi Gallery to align with your brand and improve readability. Refining the title’s color, size, and weight enhances visual hierarchy, accessibility, and overall polish. In this...

Center the Lightbox Image Count in the Divi Gallery Module

Centering the image count in a gallery lightbox creates a cleaner, more balanced presentation and makes it easier for visitors to see where they are in the image set. This simple visual tweak can enhance readability, especially with larger images and longer captions,...

Style the Divi Gallery Module Lightbox Image Count

Tailor the appearance of the image counter in the Divi Gallery module lightbox to match your brand and improve readability. By customizing the counter’s color and typography, you ensure it displays clearly and suits your design. In this guide we show you how to style...

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

0 Comments

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.