Skip to content

Instantly share code, notes, and snippets.

@gbissland
Forked from bluedognz/breadcrumbs.php
Created April 4, 2018 05:57
Show Gist options
  • Save gbissland/bf3bec837ba25f98b2c325aec65c411a to your computer and use it in GitHub Desktop.
Save gbissland/bf3bec837ba25f98b2c325aec65c411a to your computer and use it in GitHub Desktop.
This works with Beaver Themer and Astra Theme using [my_breadcrumb] (ie: Insert the shortcode into a Themer Part to display breadcrumbs)
function my_breadcrumb() {
if ( function_exists('yoast_breadcrumb') ) {
return yoast_breadcrumb( '<p id="breadcrumbs">', '</p>', false);
}
}
add_shortcode( 'my_breadcrumb', 'my_breadcrumb' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment