我已按照this和this文章向管理员菜单添加了分隔符。问题是我的自定义帖子类型menu_position
是20(在页面下方)如果我将更新我的索引添加到20我的菜单被删除。我添加了bbpress插件。 menu_position
是555555
,但它高于外观页面。
如何在不弄乱menu_position的情况下创建上述内容?
答案 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 );