How to add breadcrumb to Wordpress post with Yoast SEO
On This Page
Official documentation: https://yoast.com/help/implement-wordpress-seo-breadcrumbs/
Requirement
Add breadcrumbs to single posts and category archive pages.
You can hand-code this or use a breadcrumb specific plugin but the site I'm working on already uses the Yoast SEO plugin for other purposes.
Solution
- Log into WP Admin
- SEO > Search Appearance > Breadcrumbs > configure as needed
- Open your site. If your theme supports Yoast SEO out of the box, the breadcrumb should appear. If not, add the code below where you want it to appear.
- If you have child categories and want a child category post breadcrumb to reflect the structure, make sure you set the child as "primary category" in the post.
- Screenshot: setting the primary category of a WP post
- Example: Home > Dog Profiles > Dachschunds > Loulou and Coco. Parent category = "Dog Profiles", child category = "Dachschunds". Set "Dachschunds" as the primary category in the post "Loulou and Coco"; otherwise "Dachschunds" won't be included in the breadcrumb.
<?php
// Add Yoast SEO breadcrumb
if (function_exists('yoast_breadcrumb')) yoast_breadcrumb('<p id="breadcrumbs">','</p>');
?>