Has anybody managed to get Yoast breadcrumbs working?
Plugin Support
Yann
(@collet)
Hi Rick,
Sorry for the late reply. What issue do you encounter?
To display the Yoast breadcrumbs, you need to add the following PHP code in your child theme at the location where you want the breadcrumbs to be displayed:
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
You can learn more on the Yoast website.
Yann
Thanks Yann.
Possibly a twentig option in the future? 🙏
Plugin Support
Yann
(@collet)
Hi Rick,
Unfortunately, due to the way the Twenty Twenty theme is coded, it’s not possible to add this feature to a plugin. You can only achieve it using a child theme.
Yann