只有在使用正确的参数注册新的帖子类型以在管理ui中显示并在菜单中可用时,才能使用此链接:
$args = array(
\'show_ui\' => true,
\'show_in_menu\' => true,
}
register_post_type(\'invitation_code\', $args);
因为您在编辑页面中,所以实际上不需要“page=invitation\\u code”。
如果需要为“invitation\\u code”创建特殊页面,则需要使用add_menu_page()
作用
https://codex.wordpress.org/Function_Reference/register_post_typehttps://developer.wordpress.org/reference/functions/add_menu_page/