我使用register_post_type()
创建自定义帖子类型。
我的问题是我的第一个子菜单项的标题是帖子类型的名称。 如何为菜单项定义自定义标题?
add_action( 'init', 'myofferlugin' );
function myofferlugin() {
$labels = array(
'name' => _x( 'My Plugin', 'offer' ),
'singular_name' => _x( 'Meno one', 'offer' ),
'add_new' => _x( 'Add New', 'offer' ),
'menu_name' => _x( 'My Plugin', 'offer' )
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'supports' => array( 'title' ),
'menu_icon' => plugins_url('images', __FILE__).'/icon.png',
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'publicly_queryable' => true,
'exclude_from_search' => false,
'has_archive' => true,
'query_var' => true,
'can_export' => true,
'rewrite' => true,
'capability_type' => 'post'
);
register_post_type( 'offer', $args );
}
答案 0 :(得分:0)
我不是100%确定这是否是您的意思,但要编辑自定义帖子类型的子菜单标签,要编辑的标签是" all_items"。例如:
'menu_name' => 'Books'
'all_items' => 'All Books'
会给你一个主要的导航标签" Books"子菜单项将是"所有书籍"和"添加新"。
有关标签的完整列表,请参阅https://codex.wordpress.org/Function_Reference/register_post_type