gpt4 book ai didi

php - 如何为自定义帖子类型定义菜单标题?

转载 作者:行者123 更新时间:2023-12-05 04:15:57 26 4
gpt4 key购买 nike

我使用 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 );
}

最佳答案

我不是 100% 确定这是否是您的意思,但是要编辑自定义帖子类型的子菜单标签,要编辑的标签是“all_items”。例如:

'menu_name' => 'Books'
'all_items' => 'All Books'

将为您提供“书籍”的主导航标签,子菜单项将是“所有书籍”和“添加新书”。

参见 https://codex.wordpress.org/Function_Reference/register_post_type标签的完整列表

关于php - 如何为自定义帖子类型定义菜单标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29731091/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com