前提・実現したいこと
管理画面の記事投稿画面からタグがWordPressカスタムタクソノミーが保存・選択出来ないです
jirei
という投稿タイプでカテゴリーとタグを追加しました。
事例の投稿画面からカテゴリー、タグを選択しようとしても選択出来ない状況です
なぜでしょうか?
該当のソースコード
functions.php
1<?php 2// 事例 3$labels = array( 4 'all_items' => '事例一覧', 5 'add_new' => _x('新規投稿', 'jirei'), 6); 7 8$args = array( 9 'labels' => $labels, 10 'label' => '事例', 11 'public' => true, 12 'menu_position' => 5, 13 'menu_icon' => 'dashicons-store', 14 'supports' => array( 15 'title', 16 'editor', 17 'excerpt', 18 'thumbnail', 19 ), 20 'taxonomies' => array( 'jirei_cat', 'jirei_tag' ), 21 'has_archive' => true, 22); 23register_post_type( 'jirei', $args ); 24 25// カテゴリー 26$args = array( 27 'label' => 'カテゴリー', 28 'public' => true, 29 'hierarchical' => true, 30 'rewrite' => array('slug' => 'jirei-cat', 'with_front' => false), 31 'singular_label' => 'カテゴリー' 32); 33register_taxonomy( 'jirei_cat', array('jirei'), $args ); 34 35// 関連タグ 36$args = array( 37 'label' => '関連タグ', 38 'public' => true, 39 'hierarchical' => false, 40 'rewrite' => array('slug' => 'jirei-tag', 'with_front' => false), 41 'singular_label' => '関連タグ' 42); 43register_taxonomy( 'jirei_tag', array('jirei'), $args );
試したこと
コードを変更してからパーマリンク設定の変更を保存
追記
管理画面の表示オプションを開こうとしても開かない問題も発生。
(もしかするとプラグイン、WordPress本体のバージョンにも関わっているかもです)
ビジュアルエディタ利用制限をかけていた部分をやめたら解決しました。
ビジュアルエディタは利用できる形にしないとタグやカテゴリーも投稿画面から投稿出来ないんですね汗:
同じようにお困りの方はこのようなコードが無いか確認したほうがよいかもです????
add_filter('user_can_richedit' , 'my_default_editor');
user_can_richedit
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。