archive-xxx.phpに記載する内容
ループ
<?php while ( have_posts() ) : the_post(); ?>
<?php endwhile;?>
中身
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
サムネイル(if)
<? php
if (has_post_thumbnail()): ?>
<? php the_post_thumbnail('post-thumbnail', array('class' => 'thumbnail', 'alt' => the_title_attribute('echo=0'))); ?>
<? php
else : ?>
< img src = "<?php echo wp_upload_dir()['baseurl']; ?>/thumbnail.png"
alt = "No Image"
class = "thumbnail" >
<? php endif; ?>
ループ外
wp-pagenavi
<?php wp_pagenavi(); ?>