Skip to content

Instantly share code, notes, and snippets.

@pixelloop
Created February 24, 2016 03:13
Show Gist options
  • Save pixelloop/d1f01c809802b2341b7f to your computer and use it in GitHub Desktop.
Save pixelloop/d1f01c809802b2341b7f to your computer and use it in GitHub Desktop.
//* Add Yoast Breadcrumbs
add_action( 'loop_start', 'wordpress_seo_plugins_breadcrumbs' );
function wordpress_seo_plugins_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