Hi I found the problem for my issue. I have this code before my menu item to give me the link to the latest post from any page. When I activate it, your breadcrums fall appart!
<?php
$num=1;
$recent_posts = wp_get_recent_posts($num);
foreach($recent_posts as $post){
echo ‘ ‘;
} ?>
Is there an alternative to get a link to the latest post outside of the loop and place it on any all pages, so that your plugin does not get messed up? Or do you know how to fix this …