フォーラムへの返信
8件の投稿を表示中 - 1 - 8件目 (全8件中)
-
投稿者投稿
-
ありがとうございます。
カスタム投稿タイプのコードは以下になります。
お手数をおかけしますが、何卒よろしくお願い申し上げます。
——————————————–
function cptui_register_my_cpts_voice() { /** * Post Type: お客様の声. */ $labels = [ "name" => esc_html__( "お客様の声", "custom-post-type-ui" ), "singular_name" => esc_html__( "お客様の声", "custom-post-type-ui" ), ]; $args = [ "label" => esc_html__( "お客様の声", "custom-post-type-ui" ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "show_in_rest" => true, "rest_base" => "voice", "rest_controller_class" => "WP_REST_Posts_Controller", "rest_namespace" => "wp/v2", "has_archive" => "voice", "show_in_menu" => true, "show_in_nav_menus" => true, "delete_with_user" => false, "exclude_from_search" => false, "capability_type" => "post", "map_meta_cap" => true, "hierarchical" => true, "can_export" => true, "rewrite" => [ "slug" => "voice", "with_front" => true ], "query_var" => true, "menu_icon" => "dashicons-admin-users", "supports" => [ "title", "editor", "thumbnail", "excerpt", "custom-fields", "author", "page-attributes", "post-formats" ], "show_in_graphql" => false, ]; register_post_type( "voice", $args ); } add_action( 'init', 'cptui_register_my_cpts_voice' );
——————————————–
♥ 0いいねをした人: 居ませんご回答ありがとうございます。
REST API も「True」にしているのですが、表示されないです。。
♥ 0いいねをした人: 居ません移管後の画像が抜けていたので追記します。
♥ 0いいねをした人: 居ませんお世話になっております。
お返事遅くなり申し訳ございません。
1枚目がテスト環境のフッター、2枚目が本番環境に移管後のフッターとなっています。
また、編集画面では下記2枚のようになっております。
2枚目が本番環境なのですが、常にぐるぐるしており何も表示されない状態となっております。
♥ 0いいねをした人: 居ませんありがとうございます。
コンソールを確認したところ下記のようなエラー表示が出ていました。
調べた感じ、スノーモンキーでのエラーというよりかは wordpress本体のエラーでしょうか。
wp-includes>js>dist>widgets.min.js
♥ 0いいねをした人: 居ません -
投稿者投稿
8件の投稿を表示中 - 1 - 8件目 (全8件中)