前提・実現したいこと
SEO的観点からカスタムタクソノミー(カスタム分類)のスラッグをカスタム投稿タイプと同じにしたいと思っています。
カスタム投稿タイプ:topics
カスタムタクソノミー:topics_kind
ターム:news
topicsのアーカイブページ↓(archive-topics.php)
https://〇〇.com/topics/
topicsのターム一覧ページ↓(taxonomy-topics_kind-news.php)
https://〇〇.com/**topics_kind**/news
ではなく、
https://〇〇.com/**topics**/news/
のように表示できるようにしたいです。
そこで解決方法として、functions.phpファイルに下記を追記しました。
php
1//追記コード↓ 2 'rewrite' => array( 3 'slug' => 'topics',//★URLでtopics_kindと表記されるのをtopicsに変更 4 'hierarchical' => true //★true にすると階層化したURLを使用可能にする 5 )
しかし、実行結果は下記のどちらも404のページに飛んでしまいます。
https://〇〇.com/**topics_kind**/news
https://〇〇.com/**topics**/news/
下記に該当するコードを記述していますので、解決方法を教えて頂きたいです。
よろしくお願いします。
※できればプラグインを使用せずに実装したいです。
functions.php
php
1<?php 2/* カスタム投稿タイプを設定 */ 3function my_custom_post_topics() { 4 $labels = array( 'name' => _x('トピックス', 'post type general name'), 5 'singular_name' => _x('トピックス', 'post type singular name'), 6 'add_new' => _x('トピックスを追加', 'topics'), 7 'add_new_item' => __('トピックスを追加'), 8 'edit_item' => __('トピックスを編集'), 9 'new_item' => __('トピックス'), 10 'view_item' => __('トピックスを表示'), 11 'search_items' => __('トピックスを探す'), 12 'not_found' => __('トピックスはありません'), 13 'not_found_in_trash' => __('ゴミ箱にトピックスはありません'), 14 'parent_item_colon' => '' 15 16 ); 17 $args = array( 18 'labels' => $labels, 19 'public' => true, 20 'publicly_queryable' => true, 21 'show_ui' => true, 22 'query_var' => true, 23 'rewrite' => true, 24 'capability_type' => 'post', 25 'hierarchical' => false, 26 'menu_position' => 5, 27 'has_archive' => true, 28 'rewrite' => array( 'slug' => 'topics'), 29 'supports' => array('title','editor','author','thumbnail','revisions', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'page-attributes') 30 ); 31 register_post_type('topics',$args); 32 33 34 $args = array( 35 'label' => 'トピックスカテゴリー', /* ダッシュボードに表示する名前 */ 36 'labels' => array( 37 'singular_label' => 'トピックスカテゴリー', 38 'all_items' => 'トピックスカテゴリー一覧', 39 'add_new_item' => 'トピックスカテゴリーを追加' 40 ), 41 'hierarchical' => true, /* カテゴリーの場合はtrue */ 42 'show_ui' => true, 43 'show_in_nav_menus' => true, 44 'query_var' => true, 45 //'rewrite' => true, /* パーマリンクのリライトの許可 */ 46 'rewrite' => array( 47 'slug' => 'topics',//★URLでtopics_kindと表記されるのをtopicsに変更 48 'hierarchical' => true //★true にすると階層化したURLを使用可能にする 49 ) 50 ); 51 register_taxonomy('topics_kind','topics',$args); 52} 53add_action('init', 'my_custom_post_topics'); 54 55// カスタム投稿とカスタムタクソノミーを同一スラッグ(topics)にした際に、ページネーションででる404エラーの回避 56add_rewrite_rule('topics/([^/]+)/page/([0-9]+)/?$', 'index.php?topics_kind=$matches[1]&paged=$matches[2]', 'top'); 57 58?> 59 60・・・ 61
アーカイブページから記事ページのリンク部分(archive-topics.php)
php
1 <h2 id="topcis_h2">TOPICS</h2> 2 3 <div class="p-newsTab"> 4 <div class="p-newsTab__inner"> 5 <a class="item is-current" href="/topics"> 6 ALL<span>すべて</span> 7 </a> 8 <a href="<?php echo home_url(); ?>/topics/news/" class="item "> 9 NEWS<span>ターム1</span> 10 </a> 11 <a href="<?php echo home_url(); ?>/topics/works/" class="item "> 12 WORKS<span>ターム2</span> 13 </a> 14 <a href="<?php echo home_url(); ?>/topics/movie/" class="item "> 15 MOVIE<span>ターム3</span> 16 </a> 17 </div> 18 </div> 19 20・・・
必要なコードがあれば追記しますので、よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/05 11:48
2020/12/05 13:12
2020/12/05 13:21
2020/12/17 02:03 編集
2020/12/17 02:29
2020/12/17 03:59