add_submenu_page到post_type post

时间:2016-02-22 19:38:00

标签: php wordpress wordpress-theming custom-post-type

我正在尝试将设置子菜单页面添加到post_type帖子,但我无法让它工作。如果我直接转到网址,页面就会存在,但它不会显示在侧边栏菜单中。如果我将帖子类型更改为页面,它完全正常,但我正在尝试添加的设置专门适用于post post_type。

有解决方法吗?

谢谢,

function the_post_settings() {
  add_submenu_page(
    'edit.php?post_type=post',
    'Post Settings',
    'Settings',
    'edit_posts',
    'post-settings',
    'post_settings'
  );
}
add_action('admin_menu' , 'the_post_settings');

1 个答案:

答案 0 :(得分:0)

我解决了自己的问题。我不得不将edit.php?post_type = post更改为edit.php。

一切都很顺利。希望将来帮助别人

相关问题