-
Hey I did add Rankmath breadcrumbs , turning off my theme’s breadcrumbs. Rankmath breadcrumbs displays after the post title and not before . Is there any way out to make it display above the post title?
I have used this code in my genesis child theme’s function.php
/*
* Add Rank Math Breadcrumbs just before the Single Post Content.
*/
function rm_breadcrumbs( $content ) {
if ( function_exists(‘rank_math_the_breadcrumbs’) && is_singular() ) rank_math_the_breadcrumbs();
return $content;
}
add_filter( ‘the_content’, ‘rm_breadcrumbs’ );Thanks
You must be logged in to reply to this ticket.