Site logo

Archived topic

How do I integrate bread crumbs into the theme?

3 replies · Started by Former User on October 17, 2019

Viewing posts 1–4 of 4

How do I integrate bread crumbs into the theme?

add_action ('generate_after_header', 'bread-crumb');
function example_function_name () {?>
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
?>
<? php}

I wrote the code like above. It did not work

This archived topic is closed to new replies.