delete a page from a breadcrumb trail

Based on the code your used my guess is it would be as simple as adding a unset($bcarray[0]); to their code on line 15. Here is the code in it’s entirety: function write_breadcrumb() { $pid = $post->ID; $trail = “<a href=”https://wordpress.stackexchange.com/”>Home</a>”; if (is_front_page()) : // do nothing elseif (is_page()) : $bcarray = array(); $pdata = … Read more

Get menu names and same depth level menu names

Sorry, this is a little vague but it should get you started. It seems like you need to: Check if the page has a parent <?php if($post->post_parent) ?> Something like <?php echo $post->post_parent; ?> Something like <a href=”https://wordpress.stackexchange.com/questions/113592/<?php the_permalink() ?>”><?php the_title(); ?></a> Something like the code below, then apply your solution for turning it into … Read more

Home not showing in yoast breadcrumb

These breadcrumbs rely on the parent/child structures you make in your website. So in order to make “Home” show up in the breadcrumbs, be sure it is set as the parent of the other pages you have and want to show as child items of Home