Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created May 30, 2020 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Musilda/dacf2e51e1aafdfc3de780c596da4c74 to your computer and use it in GitHub Desktop.
Save Musilda/dacf2e51e1aafdfc3de780c596da4c74 to your computer and use it in GitHub Desktop.
<?php
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
add_action( 'woocommerce_before_main_content', 'musilda_yoast_breadcrumb', 20, 0);
function musilda_yoast_breadcrumb() {
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<nav class="woocommerce-breadcrumb">','</nav>');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment