To do that, go to SEO, PRO, Breadcrumbs tab.
Check the blue radio button associated with Breadcrumbs.
Then, check Enable Breadcrumbs.
Set a breadcrumbs separator (defaut: ” – “).
Click Save changes.
Last step and the most important, copy and paste this code in your theme to call the breadcrumbs (eg: header.php file):
if(function_exists("seopress_display_breadcrumbs")) { seopress_display_breadcrumbs(); }
If you only want to get the breadcrumb (ie do not make an “echo” but a “return”), specify “false” as parameter when calling the function:
seopress_display_breadcrumbs(false);
You can also use our shortcode in a text widget, post, page or post type:
[seopress_breadcrumbs]
That’s it!