Skip to content

Instantly share code, notes, and snippets.

@bluedognz
Created February 14, 2018 02:00
Show Gist options
  • Save bluedognz/4503df442a524f0bcd4c01b441c5b5b1 to your computer and use it in GitHub Desktop.
Save bluedognz/4503df442a524f0bcd4c01b441c5b5b1 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