Skip to content

Snippet: Disable Yoast SEO Breadcrumbs Support

add_action( 'after_setup_theme', function() {
	remove_theme_support( 'yoast-seo-breadcrumbs' );
}, 20 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top