WordPress カスタム投稿タイプ使用時のパンくずリスト

Filed under: wordpress — kdcs @ 20年1月28日 火曜日

single.phpなどにカスタム投稿タイプ使用時のパンくずリストを表示させる

single.php

<div id="breadcrumb" class="clearfix">
<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 }  the_title(''); ?>
</div

archive.php

<div id="breadcrumb" class="clearfix">
<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>
</div>

サイト内検索

カテゴリー

最近の投稿

« |WordPress カスタム投稿タイプ使用時のパンくずリスト| »
↑上に戻る