标题不以新帖子类型显示

时间:2019-04-06 13:11:28

标签: php wordpress

我注册了新的帖子类型。但是在管理菜单中,当我要添加新帖子时,标题栏不显示。

代码是:

  $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);

1 个答案:

答案 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',
     ),