-
Hi I have enabled breadcrumbs on my site rogerperkin.co.uk but they only show on the final post
Not on categories?
I have enabled it by adding this to my functions.php
//* Enable RankMath Breadcrumbs
add_filter( ‘the_content’, function( $content ) {
if( function_exists( ‘rank_math_get_breadcrumbs’ ) ) {
$content = rank_math_get_breadcrumbs() . $content;
}
return $content;
});If I add this
if (function_exists(‘rank_math_the_breadcrumbs’)) rank_math_the_breadcrumbs();
It just puts the Home breadcrumb at the top of my site?
Is this a theme issue?
Within my theme Genesis I previously had the option to enable breadcrumbs on Archives / Pages / Posts
With RankMath it’s just on or off?
The ticket ‘Breadcrumbs only show on final post?’ is closed to new replies.