■やりたいこと
wordpressでカテゴリーなどの一覧ページを作りたい
■問題点
下記の記事を参考に実践してみたが、何故か同じ記事が複数表示されてしまう
参考
php
1//archive.php 2 3<?php get_header(); ?> 4 5<main class="archive-main"> 6 <div class="tp-split archive-tp-split"> 7 <section class="tp-magazine"> 8 <!-- カテゴリーアーカイブ --> 9 <?php if(is_category()): ?> 10 <h1 class="tp-h2"><?php echo single_cat_title(); ?></h1> 11 <!-- タグアーカイブ --> 12 <?php elseif(is_tag()): ?> 13 <h1 class="tp-h2"><?php echo single_tag_title(); ?></h1> 14 <!-- 作者アーカイブ --> 15 <?php elseif(is_author()): ?> 16 <h1 class="tp-h2"><?php echo esc_attr(get_the_author_meta('nickname')); ?></h1> 17 <!-- 日付アーカイブ --> 18 <?php elseif(is_month()): ?> 19 <h1 class="tp-h2"><?php echo the_time('Y年n月'); ?></h1> 20 <?php endif; ?> 21 22 <div class="tp-magazine__contents"> 23 <?php 24 $args = array( 25 'posts_per_page' => 8, // 表示件数の指定 26 'parent' => 0, 27 'paged' => $paged, 28 'orderby' => 'term_order', 29 'order' => 'DESC', 30 ); 31 $categories = get_categories($args); 32 foreach ($categories as $category) : 33 setup_postdata($post); // 記事データの取得 34 ?> 35 <article class="tp-magazine__article"> 36 <a href="<?php the_permalink(); ?>" class="tp-magazine__article__link"> 37 <div class="tp-magazine__article__thumb"> 38 <?php if (has_post_thumbnail()) : ?> 39 <?php the_post_thumbnail('post-full'); ?> 40 <?php else : ?> 41 <p><img src="http://placehold.jp/24/cc9999/993333/350x150.png" alt=""></p> 42 <?php endif; ?> 43 </div> 44 <div class="tp-magazine__article__card"> 45 <div class="tp-magazine__article__card__info"> 46 <div class="tp-magazine__article__card__info__cat cat-health"> 47 <?php the_category(); ?> 48 </div> 49 <time class="tp-magazine__article__card__info__data"> 50 <?php the_time('Y.m.d'); ?> 51 <?php if (get_the_modified_date('Y.n.j') != get_the_time('Y.n.j')) : ?> 52 更新日:<?php the_modified_date('Y.m.d') ?> 53 <?php endif; ?> 54 </time> 55 </div> 56 <h3 class="tp-magazine__article__card__ttl"> 57 <?php the_title(); ?> 58 </h3> 59 </div> 60 </a> 61 </article> 62 <?php endforeach; 63 wp_reset_postdata(); ?> 64 </div> 65 </section> 66 </div> 67</main> 68
回答1件
あなたの回答
tips
プレビュー