不能在菜单中包含自定义帖子项目

时间:2021-02-05 作者:sfarzoso

我正在尝试在主题菜单中插入我的自定义帖子类型。此主题实际上有一个自定义的帖子类型,名为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.

我做错了什么?

例如:

enter image description here

1 个回复
SO网友:Tom J Nowell

问题是:

    \'show_im_menu\' => \'edit.php?post_type=st_tours\'
你打错了,不是show_im_menu, 它是show_in_menu

相关推荐