如何将自定义帖子类型管理菜单添加到组中?

时间:2014-11-11 11:21:11

标签: php wordpress custom-post-type

我已按照thisthis文章向管理员菜单添加了分隔符。问题是我的自定义帖子类型menu_position是20(在页面下方)如果我将更新我的索引添加到20我的菜单被删除。我添加了bbpress插件。 menu_position555555,但它高于外观页面。

enter image description here

如何在不弄乱menu_position的情况下创建上述内容?

1 个答案:

答案 0 :(得分:2)

菜单位置35适用于我,试一试

$args = array(
        'labels'             => $labels,
        'public'             => true,
        'publicly_queryable' => true,
        'show_ui'            => true,
        'show_in_menu'       => true,
        'query_var'          => true,
        'rewrite'            => array( 'slug' => 'book' ),
        'capability_type'    => 'post',
        'has_archive'        => true,
        'hierarchical'       => false,
        'menu_position'       => 35,
        'supports'           => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
    );


    register_post_type( 'book', $args );

enter image description here