我创建了自定义帖子类型。mu插件文件夹中的php文件:
<?php
function custom_post_types(){
register_post_type(\'event\', array(
\'public\' => true,
\'labels\' => array(
\'name\' => \'Events\',
\'edit_item\'=>\'Edit Event\',
\'edit_posts\' => \'Add New Event\',
\'all_items\' => \'All Events\'
),
\'menu_icon\' => \'dashicons-calendar\'
));
}
add_action(\'init\', \'custom_post_types\');
这两个标签的名称
\'edit_item\'=> \'Edit Event\', & \'edit_posts\' => \'Add New Event\'
不工作。我想知道我错在哪里。有人能帮忙吗?非常感谢。