我注册了新的帖子类型。但是在管理菜单中,当我要添加新帖子时,标题栏不显示。
代码是:
$label = array(
'name' => __( 'نمونه کار ها' ),
'singular_name' => __( 'نمونه کار' ),
);
$arg = array(
'labels' => $label,
'public' => true,
'has_archive' => true,
'menu_position' => 10,
'supports' =>array(
'author',
'editor',
'page-attributes',
'revisions' ,
'comments',
'custom-fields',
'trackbacks',
'excerpt',
'thumbnail',
),
'taxonomies' => array('portfolio_cat','portfolio_tag'),
);
register_post_type("haportfolio",$arg);
答案 0 :(得分:1)
您需要在title
中添加supports
$arg = array(
'labels' => $label,
'public' => true,
'has_archive' => true,
'menu_position' => 10,
'supports' =>array(
'title',
'author',
'editor',
'page-attributes',
'revisions' ,
'comments',
'custom-fields',
'trackbacks',
'excerpt',
'thumbnail',
),