自定义帖子类型缺少标题

时间:2013-07-02 作者:Fernando Baltazar

我错过了新页面或编辑页面上自定义帖子类型的标题;我添加了一些自定义字段,但标题消失了。

register_post_type( \'videos\', array(  
    \'labels\' => $labels,
    \'public\' => true,
    \'publicly_queryable\' => true,
    \'show_ui\' => true,
    \'exclude_from_search\' => true,
    \'query_var\' => true,
    \'rewrite\' => true,
    \'capability_type\' => \'post\',
    \'has_archive\' => true,
    \'hierarchical\' => false,
    \'menu_position\' => 10,
    \'supports\' => array( \'editor\' ),
    \'register_meta_box_cb\' => \'videos_meta_boxes\',
) );
这是我第一次尝试自己添加海关邮件类型。我想这里少了点什么。

2 个回复
最合适的回答,由SO网友:jkhedani 整理而成

通过为参数“supports”声明一个值,可以覆盖显示“title”和“editor”的默认输出。http://codex.wordpress.org/Function_Reference/register_post_type

如果您不需要任何其他post字段(减少页面上的混乱),我建议删除“supports”参数,或者只是重复默认值(如果您想稍后轻松添加更多字段,如缩略图或注释):

\'supports\' => array( \'title\', \'editor\' )

SO网友:JMau

您的代码中缺少以下内容:

\'supports\' => array( \'title\', \'editor\', \'author\', \'thumbnail\', \'excerpt\', \'comments\' )

结束

相关推荐