Here’s a quick home-made breadcrumb for WordPress in case you aren’t using the built-in Yoast one or whatever. Add this to your template:
<?php
$parent = wp_get_post_parent_id(get_the_ID());
if ( $parent ) {
echo '<nav aria-label="breadcrumb"><a href="'.get_permalink( $parent ).'" class="backto"><span>◀</span> Back to '.get_the_title($parent).'</a></nav>';
}
?>