前提・実現したいこと
カスタム投稿のサイドナビに設定している「年別」アーカイブリンクが、
実際と異なる一覧表示でされてしまいます。
(サイドナビに表示されている、投稿数は正しく表示されています)
同じようにカスタム投稿設定で作成しているのページもあるのですが、
そちらは「年別アーカイブ」リンクはうまく表示されています。
プラグイン(Custom Post Type UI)の設定内容も見直しましたが、
うまく表示されているページと設定内容は同じです。
なにか設定が足りないのでしょうか?
片方のみ不具合がおこる理由や、考えられる要因などありますでしょうか?
いろいろと検索をしたのですが、解決方法が見つからず・・・。。
ご教授いただけると助かります。よろしくお願いいたします。
導入プラグイン
・Custom Post Type UI(カスタム投稿設定)
・Custom Post Type Rewrite(カスタム投稿タイプのリンクを追加するプラグイン)
・Custom Post Type Widgets(ウィジット設定)
・WP Show Posts(アイキャッチ投稿記事一覧表示)
・WP-PageNavi(ページ送り)
↓Custom Post Type UIの設定内容
name: sp label: 販促物 singular_label: 販促物 description: "" public: true publicly_queryable: true show_ui: true show_in_nav_menus: true delete_with_user: false show_in_rest: true rest_base: "" rest_controller_class: "" has_archive: true has_archive_string: "" exclude_from_search: false capability_type: post hierarchical: false rewrite: true rewrite_slug: "" rewrite_withfront: true query_var: true query_var_slug: "" menu_position: "" show_in_menu: true show_in_menu_string: "" menu_icon: "" custom_supports: ""
月別アーカイブで表示されているテンプレート
archive-sp.php
<?php get_header(); ?> <!-- 全体warapper --> <div class="wrapper"> <!-- メインwrap --> <div id="main"> <!-- ページタイトル --> <h1 class="pagetitle">販促物</h1> <!-- / ページタイトル --> <!-- コンテンツブロック --> <div class="row"> <!-- 本文エリア --> <div class="twothird"> <!-- ポスト --> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <!-- 投稿ループ --> <?php if ( function_exists( 'wpsp_display' ) ) wpsp_display( 157 ); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- 投稿が無い場合 --> <?php endwhile; else: ?> <p><?php echo "お探しの記事、ページは見つかりませんでした。"; ?></p> <?php endif; ?> <!-- 投稿が無い場合 --> <!-- / 投稿ループ --> <!-- ウィジェットエリア(シングルページ記事下) --> <div class="row"> <div class="singlebox"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('シングルページ記事下') ) : ?> <?php endif; ?> </div> </div> <!-- / ウィジェットエリア(シングルページ記事下) --> <!-- ページャー --> <div id="next"> <ul class="block-two"> <li class="next-left"><?php previous_post_link('%link', '%title', 'true'); ?></li> <li class="next-right"><?php next_post_link('%link', '%title', 'true'); ?></li> </ul> </div> <!-- / ページャー --> <!-- コメントエリア --> <?php comments_template(); ?> <!-- / コメントエリア --> <!-- ウィジェットエリア(シングルページ最下部) --> <div class="row"> <div class="singlebox"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('シングルページ最下部') ) : ?> <?php endif; ?> </div> </div> <!-- / ウィジェットエリア(シングルページ最下部) --> </article> <!-- / ポスト --> </div> <!-- / 本文エリア --> <!-- サイドエリア --> <div class="third"> <?php if (is_active_sidebar('sidebar-sp')) { dynamic_sidebar('sidebar-sp'); } ?> </div> <!-- / サイドエリア --> </div> <!-- / コンテンツブロック --> </div> <!-- / メインwrap --> <?php get_footer(); ?>
補足情報(FW/ツールのバージョンなど)
パーマリンク設定:投稿名
(クライアントの要望で投稿名での設定となっています)
アーカイブリンク先URLは、下記のような感じで年数字へリンクが貼られています。
2020年
https://xxx.com/xxx/sp/2020/
2021年
https://xxx.com/xxx/sp/2021/
wordpressのバージョン:5.7.2
あなたの回答
tips
プレビュー