wordpressのカスタム投稿のアーカイブについて質問があります。
============現状==============
スラッグ名englishというカスタム投稿にCustom Post Type PermalinksとCustom Post Type Widgetsのプラグインを用いてカスタム投稿用のウィジェットを実装したまではよかったのですが、
カテゴリーは標示されてもアーカイブが標示されません。
下記の画像のURLをhttp://act.local/english/2020/06/のように/engishを一つ消せば標示されます。
Custom Post Type Permalinksのパーマリンクの設定は以下の画像のようになっています。
おそらくenglish/とつくのはarchive-englishのenglishが出力されているのだと思います。
普通の投稿のほうのアーカイブはdate.phpを使用しています。
どなたか助言をお願いいたします。
/* アーカイブページのテンプレート */ ?> <?php get_header(); ?> <main role="main"> <!-- page_content --> <section class="page_content"> <div class="topic_path"> <?php if(function_exists('bcn_display')): //プラグインがあるか確認 ?> <?php bcn_display(); ?> <?php endif; ?> </div> <div class="page_content__header"> <div class="page_content__header__title"> <h2>INFORMATION</h2> </div> </div> <section class="page_content__body"> <div class="page_section clear_fix"> <div class="page_section__content"> <?php if(have_posts()): ?> <?php /* ↓↓ 記事が存在したら下記を実行 ↓↓ */ ?> <?php while(have_posts()): ?> <?php /* ↓↓ 記事の件数だけ繰り返し処理 ↓↓ */ ?> <?php the_post(); ?> <article class="post"> <div class="post__inner"> <div class="post__meta"> <ul class="category"> <li><?php categories_label() ?></li> </ul> <time><?php the_time('Y年m月d日'); ?></time> </div> <div class="post__catch"> <figure> <?php if( has_post_thumbnail() ): ?> <?php the_post_thumbnail(); ?> <?php endif; ?> </figure> </div> <div class="post__content"> <h3><?php the_title(); ?></h3> <?php the_content(); ?> <div class="btn btn--c01"><a href="<?php the_permalink(); ?>">MORE></a></div> </div> </div> </article> <!-- //post --> <?php /* ↑↑ 記事の件数だけ繰り返し処理 ↑↑ */ ?> <?php endwhile; ?> <?php /* ↑↑ 記事が存在したら上記を実行 ↑↑ */ ?> <?php else: ?> <?php /* ↓↓ 記事が存在しない場合 ↓↓ */ ?> <p>まだ記事の投稿がありません。</p> <?php /* ↑↑ 記事が存在しない場合 ↑↑ */ ?> <?php endif;?> <div class="wp-pagenavi"> <?php if(function_exists('wp_pagenavi')): ?> <?php wp_pagenavi(); ?> <?php endif; ?> </div> <!-- //wp-pagenavi --> </div> <div class="page_section__side"> <?php get_search_form(); ?> <?php get_sidebar(); ?> </div> </div> </section> </section> <!-- /top content --> </main> <?php get_footer(); ?> コード
あなたの回答
tips
プレビュー