Skip to content

Instantly share code, notes, and snippets.

@ejntaylor
Created April 5, 2014 10:56
Show Gist options
  • Save ejntaylor/9990392 to your computer and use it in GitHub Desktop.
Save ejntaylor/9990392 to your computer and use it in GitHub Desktop.
For use on Woo Canvas, WooCommerce and Yoast SEO
// Replace WooThemes Breadcrumbs with Yoast breadcrumbs
add_action( 'init', 'hh_breadcrumbs' );
function hh_breadcrumbs() {
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
add_action( 'woocommerce_before_main_content','hh_yoast_breadcrumb', 20, 0);
function hh_yoast_breadcrumb() {
if ( function_exists('yoast_breadcrumb') && !is_front_page() ) {
yoast_breadcrumb('<p class="breadcrumbs">','</p>');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment