[ad_1]
Hello @mufidamar,
Thank you for contacting Rank Math support.
Disabling the breadcrumbs title in the General settings will remove all breadcrumbs titles including the pages so this will require you to use our filter code.
Please refer to this filter code to remove the title only for single posts:
add_filter( 'rank_math/frontend/breadcrumb/items', function( $crumbs, $class ) {
if(is_single()){
array_pop($crumbs);
}
return $crumbs;
}, 10, 2);Here is an article on how to add a filter to your site:
Hope this helps.
