<div id="breadcrumb" class="clearfix" style="margin-bottom:5px;font-size:80%;">
<a href="<?php echo bloginfo('url'); ?>">ホーム</a>　＞　<a href="<?php echo get_post_type_archive_link($post_type); ?>"><?php echo esc_html(get_post_type_object(get_post_type())->labels->singular_name ); ?></a>　＞　<?php foreach ( array_reverse(get_post_ancestors($post->ID)) as $parentid ) { ?>
<a href="<?php echo bloginfo('url'); ?>?p=<?php echo $parentid;?>"><?php echo get_page($parentid)->post_title; ?></a>　＞　
<?php
$term = get_the_terms($post->ID,'game_title');
echo '<a href="'.get_term_link($term[0]->slug,'game_title').'">'.$term[0]->name.'</a>';
?>

　＞　<?php }  the_title(''); ?>

</div>