Skip to content

Instantly share code, notes, and snippets.

@beaverbuilder
Last active September 4, 2019 08:36
Show Gist options
  • Select an option

  • Save beaverbuilder/c5b728f3e05e95b336232d7c5d12ce94 to your computer and use it in GitHub Desktop.

Select an option

Save beaverbuilder/c5b728f3e05e95b336232d7c5d12ce94 to your computer and use it in GitHub Desktop.
This snippet is used in the following knowledge base article – https://kb.wpbeaverbuilder.com/article/605-add-yoast-breadcrumbs-with-beaver-themer
<?php // Do not copy this line, start with line 3
function bbtheme_yoast_breadcrumbs() {
if ( function_exists('yoast_breadcrumb') && ! is_front_page() ) {
yoast_breadcrumb('<div class="container"><p id="breadcrumbs">','</p></div>');
}
}
add_action( 'fl_content_open', 'bbtheme_yoast_breadcrumbs' );
<?php // Do not copy this line, start with line 3
function bbtheme_yoast_breadcrumbs() {
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<div class="container"><p id="breadcrumbs">','</p></div>');
}
}
add_action( 'fl_content_open', 'bbtheme_yoast_breadcrumbs' );

ghost commented Sep 4, 2019

Copy link
Copy Markdown

good stuff

@beaverbuilder

beaverbuilder commented Sep 4, 2019 via email

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment