CPT问题:警告:CALL_USER_FUNC_ARRAY()要求参数1为有效回调

时间:2017-07-13 作者:Sddarter

我在自定义帖子类型的管理屏幕上遇到错误。我已经搜索了很多其他答案,但在我的代码中没有发现任何可能导致它的原因。这是我的密码。任何帮助都将不胜感激。

// Register the post types and taxonomys
add_action(\'init\', \'register_post_types\');
function register_post_types(){ 
// Property Post Type
$labels = array(
    \'name\'               => __(\'Properties\'),
    \'singular_name\'      => __(\'Property\'),
    \'add_new\'            => __(\'Add New\'),
    \'add_new_item\'       => __(\'Add New Property\'),
    \'edit_item\'          => __(\'Edit Property\'),
    \'new_item\'           => __(\'New Property\'),
    \'view_item\'          => __(\'View Property\'),
    \'search_items\'       => __(\'Search Properties\'),
    \'not_found\'          => __(\'Nothing found\'),
    \'not_found_in_trash\' => __(\'Nothing found in Trash\'),
    \'parent_item_colon\'  => \'\',
);

$args = array(
    \'labels\'               => $labels,
    \'public\'               => true,
    \'publicly_queryable\'   => true,
    \'show_ui\'              => true,
    \'register_meta_box_cb\' => \'custom_meta_boxes\',
    \'query_var\'            => true,
    \'menu_icon\'            => null,
    \'rewrite\'              => true,
    \'capability_type\'      => \'post\',
    \'hierarchical\'         => false,
    \'menu_position\'        => 5,
    \'supports\' => array( \'title\', \'editor\', \'genesis-seo\', \'thumbnail\',\'genesis-cpt-archives-settings\' ),
    \'has_archive\' => true,
); 

register_post_type(\'property\' , $args);

// Property Taxonomy
$taxononmy_args = array(
    \'hierarchical\'   => true, 
    \'label\'          => "Categories", 
    \'singular_label\' => "Category", 
    \'rewrite\'        => true,
    \'show_admin_column\' => TRUE
);

register_taxonomy("property_categories", array("property"), $taxononmy_args);
}

2 个回复
SO网友:Sddarter

我已删除custom\\u meta\\u框。我不需要它们,它解决了问题。我仍然不明白为什么他们是一个问题,但如果没有他们我也能做到,我会的。

我感谢大家的努力。

注意:回滚到4.7没有什么区别。

SO网友:sleepingpanda

你的custom_meta_boxes 添加元框的函数?

请看这个URL 用于为自定义帖子类型创建自定义元框。添加此函数后,您的代码将正常工作。

结束

相关推荐

PHPStorm variable warnings

我在PHPStorm中编码,并在路径中包含wp admin和wp include,但会收到与未定义/未使用变量相关的代码检查警告。我应该担心这些吗?我如何满足解决错误的解决方案(而不只是关闭检查)