Breadcrumbs do not appear in structured data testing
-
I added the code below in funtions.php section, the breadcrumbs do appear in the AMP version of the site but not in the desktop version. What can I do to fix this?
`add_filter( ‘the_content’, function( $content ) {
if( function_exists( ‘rank_math_get_breadcrumbs’ ) ) {
$content = rank_math_get_breadcrumbs() . $content;
}
return $content;
});The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Breadcrumbs do not appear in structured data testing’ is closed to new replies.