index.php、archive.php
1 2 3 4 5 6 7 |
<?php if(is_archive() | is_paged()):?> 2ページ目以降の処理 <?php else:?> 1ページ目の処理 <?php endif;?> |
category.php
1 2 3 4 5 6 7 |
<?php if(is_paged()):?> 2ページ目以降の処理 <?php else:?> 1ページ目の処理 <?php endif;?> |
コメント