Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created December 16, 2016 12:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/723cd5d65b19a0e9a78bb1e4341c1169 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/723cd5d65b19a0e9a78bb1e4341c1169 to your computer and use it in GitHub Desktop.
/**
* Prints the Breadcrumb in Storefront using the function by Yoast SEO.
*/
function storefront_yoast_breadcrumb() {
if ( function_exists( 'yoast_breadcrumb' ) && ! is_home() ) {
yoast_breadcrumb( '<nav class="breadcrumbs">','</nav>' );
}
}
add_action( 'storefront_content_top', 'storefront_yoast_breadcrumb' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment