パンくずリスト
<?php wp_reset_postdata(); ?>
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/">
<?php if(function_exists('bcn_display')) { bcn_display(); } ?>
</div>
リンク
<a href="<?php echo home_url(); ?>/post/" >一覧</a>
ループ
<?php while ( have_posts() ) : the_post(); ?>
<?php endwhile;?>
日付・カテゴリー・タイトル(ループ内)
<?php the_time('Y/m/d'); ?>
<?php
$categories = get_the_category();
foreach( $categories as $category ) {
$slug = $category->slug;
echo '<a href="'.get_category_link($category->term_id).'" class="'.$slug.'">'.$category->name.'</a>';
}
?>
<?php the_title(); ?>
wp-pagenavi(ループ外)
<?php wp_pagenavi(); ?>