Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Last active December 28, 2015 16:13
Show Gist options
  • Save nathaningram/85fa73329f98e53766f7 to your computer and use it in GitHub Desktop.
Save nathaningram/85fa73329f98e53766f7 to your computer and use it in GitHub Desktop.
// Add Yoast Breadcrumbs to Top of Builder Content Module
// Be sure breadcrumbs are enabled in Yoast Advanced Settings
add_action( 'builder_module_render_element_block_contents_content', 'show_breadcrumbs', 0 );
function show_breadcrumbs() { ?>
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment