Skip to content

Instantly share code, notes, and snippets.

@feastdesignco
Created June 26, 2019 20:50
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 feastdesignco/5e61cf7b69278ad80f16573e25f1f1a0 to your computer and use it in GitHub Desktop.
Save feastdesignco/5e61cf7b69278ad80f16573e25f1f1a0 to your computer and use it in GitHub Desktop.
// add this to the code snippets plugin
add_action( 'genesis_before_content', 'custom_add_yoast_breadcrumbs', 9 );
function custom_add_yoast_breadcrumbs(){
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment