-
My breadcrumb includes category.
I only want to display Home > Blog > Title of the post, but my breadcrumbs always shows Home > Blog > Category > Title of the post.
I have followed the guideline in this website: https://rankmath.com/kb/customize-breadcrumbs-in-rank-math/Past the code below into function.php, but it does not work. My breadcrumb displays like Home > Category > Title of the post. So please help me to find way to remove category in my breadcrumb
The code:
/**
* Filter to display tags in Rank Math Breadcrumbs.
*/
add_filter( ‘rank_math/frontend/breadcrumb/items’, function( $crumbs, $class ) {
$get_post_tags = get_the_tags();if ($get_post_tags) {
foreach($get_post_tags as $tag) {
$tag_list= [ $tag->name, get_tag_link( $tag->term_id ) ];
array_splice( $crumbs, 2, 0, array($tag_list) );
}
}
return $crumbs;
}, 10, 2);
You must be logged in to reply to this ticket.