表題の通りですが、
カスタム投稿のスラグを変更したい&投稿済みの記事をプラグインを使って新しいカスタム投稿スラグに引き継ぎたい
と、functions.phpをいじったところ、このカスタム投稿一覧(固定ページ)が表示できず404ページに飛ぶようになってしまいました。焦ってしまい、何が悪いのか解らず、おhttps力を貸していただけませんでしょうか?
【経緯】
カスタム投稿のスラグをshop→shoplistに変更したく、素直に変更すれば良かったのですが、投稿済みの記事があったため欲が出て、shoplistというカスタム投稿を追加→Post Type Switcherというプラグインで記事の引っ越し→カスタム投稿(shop)を削除、という流れでやろうと考え、実行したところどうやら「カスタム投稿(shop)を削除」でうまく表示ができなくなりました。カスタム投稿(shop)の削についてはfunctions.phpの記述を削除したらエラーが出てしまい、結局削除できず、元に戻して保存など繰り返していました。うまくいかないのでカスタム投稿(shoplist)をも削除したりしているうちにパーマリンクがおかしくなったのか固定ページの表示もできなくなりました。
どうやったら元に戻せますでしょうか?焦っています。
以下の店舗一覧ページが全て404に飛ばされてしまいます。
店舗一覧(固定ページ)
https://sample.com/shoplist/
https://sample.com/shoplist/hokkaido/
https://sample.com/shoplist/tohoku/
・
・
・
functiona.php
//カスタム投稿タイプの登録 店舗リスト shoplistを作った後、削除しましたがエラーになりできませんでした。 function create_post_type_func() { register_post_type ( 'shop', array( 'label' => '店舗)', 'description' => 'shop', 'public' => true, 'show_ui' => true, 'hierarchical' => false, 'query_var' => false, 'menu_position' => 6, 'has_archive' => true, 'yarpp_support' => true, 'rewrite' => array('with_front' => false), 'supports' => array( 'title','editor','thumbnail' ) )); register_taxonomy( 'hokkaido', 'shop', array( 'label' => '北海道', 'public' => true, 'hierarchical' => true, 'rewrite' => true, )); register_taxonomy( 'tohoku', 'shoplist', array( 'label' => '東北', 'public' => true, 'hierarchical' => true, 'rewrite' => true, )); ・ ・ ・ } add_action( 'init', 'create_post_type_func' ); //カスタム投稿タイプの登録 店舗リスト こちらを後から追加して、記事の引っ越しを行いました。途中うまくいかないため削除もしたり残したりしました。 function create_post_type_shoplist_func() { register_post_type ( 'shoplist', array( 'label' => '店舗2', 'description' => 'shoplist', 'public' => true, 'show_ui' => true, 'hierarchical' => false, 'query_var' => false, 'menu_position' => 5, 'has_archive' => true, 'yarpp_support' => true, 'rewrite' => array('with_front' => false), 'supports' => array( 'title','editor','thumbnail' ) )); register_taxonomy( 'hokkaido', 'shoplist', array( 'label' => '北海道', 'public' => true, 'hierarchical' => true, 'rewrite' => true, )); register_taxonomy( 'tohoku', 'shoplist', array( 'label' => '東北', 'public' => true, 'hierarchical' => true, 'rewrite' => true, )); ・ ・ ・ } add_action( 'init', 'create_post_type_shoplist_func' );
追記です。
試行錯誤している途中ではありますが、、、
archive-shoplist.phpを使えば表示できます。
ただ、子ページ/shoplist/hokkaido/というurlで表示したいため、固定ページの親子関係を使いたいです。
以前色々試しましたが、taxonomy.phpやarchive.phpではタクソノミー分類一覧を作れなかったためです。(呼び出されませんでした。)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/06 02:03