WordPress 技巧:从自定义文章类型菜单下移除自定义分类子菜单

2023-04-13 10:58:38 浏览数 (1)

假设我们创建了一个 product 的自定义文章类型,然后又创建了一个 product_category 自定义分类,并且关联上了 product 这个自定义文章类型,这样在后台 product 自定义文章类型菜单下就有 product_category 的子菜单。

这个子菜单的链接是:

代码语言:javascript复制
edit-tags.php?taxonomy=product_category&post_type=product

由于某种原因,我们要移除这个子菜单,根据 remove_submenu_page 函数的的要求,就写了下面的代码来移除:

代码语言:javascript复制
remove_submenu_page( 'edit.php?post_type=product', 'edit-tags.php?taxonomy=product_category&post_type=product' );

但是并不生效,这是因为 WordPress 生成子菜单的时候,如果子菜单的链接有 & 的时候会被转换成 & HTML 实体,所以正确的移除方法是:

代码语言:javascript复制
remove_submenu_page( 'edit.php?post_type=product', 'edit-tags.php?taxonomy=product_category&post_type=product' );

0 人点赞