wordpressが分かる人に質問です。
<===========現状=================>
現在投稿ページの一覧ページはウィジェットでカテゴリー別のリンクから表示できました
カスタム投稿の際はCustom Post Type Widgetsのプラグインで表示まではできているのですが
カテゴリー別のリンクを押しても全て表示されたままです。
<===========実装したいこと=================>
カスタム投稿のサイドバーの「アーカイブ」と「カテゴリー」の項目を押しても変わらないので
表示できるようにしたいです。
画像でいうとサイドバーにある「カテゴリー」の「助動詞」を押しても下記の画像のままです。
アーカイブの一覧も表示されません。
また、このプラグインのサイドバーを表示させるタグ下記ではあっていますでしょうか?
<?php dynamic_sidebar( 'english_sidebar' ); ?>何卒ご教授お願いいたします。
englishはカスタム投稿名
english_catはタクソノミー
zyodousiはターム名
<?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>英語カテゴリー</h2> </div> </div> <section class="page_content__body"> <div class="page_section clear_fix"> <div class="page_section__content"> <?php $posts = get_posts(array( 'post_type'=>'english', //カスタム投稿タイプ 'posts_per_page'=>'6', //表示件数s )); ?> <?php if (!empty($posts)): ?> <?php foreach ($posts as $post): ?> <?php setup_postdata($post); ?> <article class="post"> <div class="post__inner"> <div class="post__meta"> <ul class="category"> <?php $terms = get_the_terms($post->ID, 'english_cat'); foreach ($terms as $term) : ?> <a href="#" class="<?php echo $term->slug; ?>"><?php echo $term->name; ?></a> </a> <?php endforeach; ?> </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 endforeach; ?> <?php wp_reset_postdata(); //必ず必要?> <?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 if(is_post_type_archive()): ?> <?php dynamic_sidebar( 'english_sidebar' ); ?> <?php endif; ?> </div> </div> </section> </section> <!-- /top content --> </main> <?php get_footer(); ?>
回答1件
あなたの回答
tips
プレビュー