web-dev-qa-db-ja.com

Notice:map_meta_capが誤って呼び出されました。

Wp-load.phpを使用するカスタム投稿タイプにJSONデータをインポートするための外部スクリプトを作成しました。すべてうまくいきますが、更新するたびにメッセージが表示されます

Notice: map_meta_cap was called incorrectly. The post type EXAMPLE is not registered, so it may not be reliable to check the capability "edit_post" against a post of that type.

子テーマとpost_type_exists内でスクリプトを呼び出すと、falseが返されますが、正常に機能します。

私はコアトラックスレッドで同様の通知を見ましたが、それはコメントが問題であることについて話していて、私の投稿タイプはコメント機能を持っていません。

function child_post_types() {

$labels = array(
    'name'                => _x( 'Courses', 'Post Type General Name', 'test' ),
    'singular_name'       => _x( 'Course', 'Post Type Singular Name', 'test' ),
    'menu_name'           => __( 'Courses', 'test' ),
    'parent_item_colon'   => __( 'Parent Course:', 'test' ),
    'all_items'           => __( 'All Courses', 'test' ),
    'view_item'           => __( 'View Course', 'test' ),
    'add_new_item'        => __( 'Add New Course', 'test' ),
    'add_new'             => __( 'Add New', 'test' ),
    'edit_item'           => __( 'Edit Course', 'test' ),
    'update_item'         => __( 'Update Course', 'test' ),
    'search_items'        => __( 'Search Courses', 'test' ),
    'not_found'           => __( 'Not found', 'test' ),
    'not_found_in_trash'  => __( 'Not found in Trash', 'test' ),
);
$args = array(
    'label'               => __( 'Course', 'test' ),
    'description'         => __( 'Courses', 'test' ),
    'labels'              => $labels,
    'supports'            => array( 'title', 'thumbnail', 'editor', 'revisions', 'author' ), //editor, thumbnail, title, author, excerpt, trackpacks, custom-fields, comments, revisions, page-attributes, post-formats 
    'hierarchical'        => false,
    'public'              => true,
    'show_ui'             => true,
    'show_in_menu'        => true,
    'show_in_nav_menus'   => true,
    'show_in_admin_bar'   => true,
    'menu_position'       => 5,
    'can_export'          => true,
    'has_archive'         => true,
    'exclude_from_search' => false,
    'publicly_queryable'  => true,
    'rewrite'             =>array('slug'=>'courses'),
    'capability_type'     => 'page',
);
register_post_type( 'course', $args );

}    
add_action( 'init', 'child_post_types', 0 );

そしてスクリプトは私の子供のテーマの中にあり、ただローカルのjsonファイルを取得してwp_update_post()でコースをループしているだけです。

require('../../../wp-load.php');

$data = json_decode( file_get_contents( 'wp-content/themes/_theme/courses.json' ), true );

foreach($data as $key => $c){

  $course = wp_update_post( array(
                'ID'    => $courseID, 
                'post_title' => $c['CourseTitle'],
                'post_content' => $c['Description'],
            ), true );
}

何か案は?

2
chris

今日はカスタム投稿タイプを追加したときもまったく同じ動作をしました。私はまた、いくつかの管理ポスト検索ツールが機能しなくなったことに気づきました。私のdebug_logは全く同じ通知を示しました。

<?phpオープニングタグ(トップファイル)がCPTに登録される前に、問題は何らかのテキストであることが判明しました。


some text here<?php
/**
 * @class My_Cpt_Class
 */
.......

CPTは正しく登録されます。私は投稿などを追加することができますが、いくつかのデフォルトの投稿アクション(他のプラグインからも)はすべての投稿タイプに対して機能しなくなります。なぜこれがこのエラーで起こるのか私にはわかりません。

1
Bjorn