Hi,
Sorry if it seems duplicate topic, but I tried previous solutions and they didn’t help me.
I just active Yoast on my website, and trying to use breadcrumbs.
I added theme support code and tried this code in child theme functions.php too:
if ( ! function_exists( ‘x_breadcrumbs’ ) ) :
function x_breadcrumbs() {
if ( x_get_option( 'x_breadcrumb_display', 1 ) && function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} else {
echo '<p>Please install Yoast Breadcrumb plugin.</p>';
}
}
endif;
my website is: https://pinbeez.com/shop
Please