Disabling yoast breadcrumb support
-
Hi,
I own two sites:
- https://apoplife.nl, Dutch site
- https://en.apoplife.nl, English site)
In the last update of the theme you have included Yoast breadcrumb support. I don’t want the breadcrumbs shown so I have figured out that I need to undo your theme support line:
/* Add support for Yoast SEO breadcrumbs */
add_theme_support( ‘yoast-seo-breadcrumbs’ );Since I use a child thme I added the following in my child theme’s functions.php:
function eb_apl_remove_yoast_seo_breadcrumbs() {
remove_theme_support( ‘yoast-seo-breadcrumbs’ );
}
add_action( ‘after_setup_theme’, ‘eb_apl_remove_yoast_seo_breadcrumbs’, 11 );This worked perfectly on my Dutch site and don’t see it in the Customizer either.
On my English site however the breadcrumbs still exist and I see the option in the theme Customizer, while the functioncurrent_theme_supports( ‘yoast-seo-breadcrumbs’ )
returns false.
Could you give some directions? I’m kinda lost.
Thanks in advance,
Erwin Barendregt
- The topic ‘Disabling yoast breadcrumb support’ is closed to new replies.