Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created July 26, 2020 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/afbda480fbeaaa8ebe1b72a226e5b8e5 to your computer and use it in GitHub Desktop.
Save braddalton/afbda480fbeaaa8ebe1b72a226e5b8e5 to your computer and use it in GitHub Desktop.
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
add_action( 'genesis_before_loop', 'wordpress_seo_plugins_breadcrumbs' );
function wordpress_seo_plugins_breadcrumbs() {
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<div class="breadcrumb">','</div>');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment