Hello,
Thank you for contacting Rank Math and sorry for any inconvenience that might have been caused due to that.
Meanwhile, we don’t have an option (yet) to update all the breadcrumb titles in bulk, you can achieve it using the filters in our API. If you know about coding (or if you have some dev or freelancer), you can achieve it pretty easily, I have done a little custom filter for you:
/**
* this is an example to remove the second item in your post breadcrumbs
* Allow changing or removing the Breadcrumb items
*
* @param array $crumbs The crumbs array.
* @param Breadcrumbs $this Current breadcrumb object.
*/
add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) {
// Check if we are viewing single posts
if(is_singular('post')){
// Apply here your custom login to generate the final
// element of the breadcrumb (the breadcrumb title)
$newBreadcrumbTitle = "example";
// The last element in the $crumbs array is the post's
// breadcrumb title, so we have to update it:
$crumbs[count($crumbs)-1] = $newBreadcrumbTitle;
}
// And return the breadcrumbs
return $crumbs;
}, 10, 2);
Looking forward to helping you. Thank you.
Great thank you! Was able to tweak that and make it work for what we needed.
Have a nice weekend.
Hello,
We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.
If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.
If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.
Thank you.