Tagged: breadcrumbs, categories
Is there a way to remove categories from the breadcrumb trail? Instead of “site/category/blog title” I would like “site/blog title.”
Thanks
Hey macjeffff,
Try adding this code to the end of your functions.php file in Appearance ▸ Editor:
add_filter( 'avia_breadcrumbs_trail', 'remove_category_from_breadcrumb', 50, 2 );
function remove_category_from_breadcrumb( $trail, $args ) {
if ( is_single() ) {
unset ($trail[1]);
unset ($trail[2]);
}
return $trail;
}
Best regards,
Mike
That worked.
Thank you, Mike!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike