アーカイブページの作成
-2015年03月18日-
<?php
if(have_posts()): while(have_posts()): the_post();?>
<div class="blogloop">
<div class="post-thumb img-block"><a href="<?php the_permalink(); ?>"><?php the_category_image();?> <!--設定はfunctions.phpに--></a></div>
<div class="post-right">
<h1 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php $terms01 = get_the_term_list( get_the_ID(), 'blog_cat' ); ?>
<div class="post-date"><?php the_date(); ?> <br />
<span><?php echo $terms01; ?></span></div>
<?php echo mb_substr(get_the_excerpt(), 0, 38),"..."; ?>
</div><!-- / .post-right -->
</div><!-- / .blogloop -->
<?php endwhile; ?>
<div id="paging" >
<?php
// ページングを表示
if (function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
<?php endif;
wp_reset_query();
?>
</div><!-- / #paging -->
●loop-blog.phpとしてまとめておくと便利です。
ループさせたい箇所に下記のように設置します。
<?php get_template_part('loop','blog'); ?>