I’ve used this snippet and the breadcrumbs show.
add_action( 'generate_before_content', function() {
if ( function_exists( 'bcn_display' ) && ! is_front_page() ) {
bcn_display();
}
} );
Goal:
1) Breadcrumbs don’t show for posts and particular pages (would this be easier with a hook? Wasn’t able to make it work that way).
2) The parent page should show in the breadcrumbs. Home >> parent >> page
3) The title of the page and trailing arrow shouldn’t show. Home >> parent
The end-result would be home >> parent only showing on pages that I’ve picked (not front page, not posts, only particular pages).
WHow to do this?
3)