我正在尝试在主题菜单中插入我的自定义帖子类型。此主题实际上有一个自定义的帖子类型,名为st_tours. 因此,当我注册自定义帖子类型时,我会:
$args = array(
    \'labels\' => $labels,
    \'has_archive\' => true,
    \'public\' => true,
    \'hierarchical\' => false,
    \'rewrite\'   => array(\'slug\' => \'tour\'),
    \'show_in_rest\' => true,
    \'exclude_from_search\' => true,
    \'show_im_menu\' => \'edit.php?post_type=st_tours\'
);
register_post_type(\'tour\', $args);
 但是我的自定义帖子类型没有插入到主题的菜单中,Wordpress定义了一个名为
Tour.
我做错了什么?
例如:
