Yoast Breadcrumbs
-
Hello,
I am using the customizr theme and yoast WordPress SEO and Woocommerce SEO plugins.
In order to display the Yoast breadcrumbs Woo have staed I should use this code:
‘// Both woo_breadcrumbs() and Yoast breadcrumbs need to be enabled in the WordPress admin for this to function.
add_filter( ‘woo_breadcrumbs’, ‘woo_custom_use_yoast_breadcrumbs’ );
function woo_custom_use_yoast_breadcrumbs ( $breadcrumbs ) {
if ( function_exists( ‘yoast_breadcrumb’ ) ) {
$before = ‘<div class=”breadcrumb breadcrumbs woo-breadcrumbs”><div class=”breadcrumb-trail”>’;
$after = ‘</div></div>’;
$breadcrumbs = yoast_breadcrumb( $before, $after, false );
}
return $breadcrumbs;
}
// End woo_custom_use_yoast_breadcrumbs()’As Customizr seems to use a derivation of the WordPress and Woo breadcrumbs does anyone know how I alter this code to get the Yoast Breadcrumbs to work please?
- The topic ‘Yoast Breadcrumbs’ is closed to new replies.