如何在管理选项页面中设置URL

时间:2018-05-10 作者:pooja

http://localhost/managingcode/wp-admin/edit.php?post_type=invitation_code&page=invitationcode&create=action

如何设置此???我必须在选项页内创建“从何时单击”按钮

1 个回复
SO网友:Benoti

只有在使用正确的参数注册新的帖子类型以在管理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/

结束

相关推荐

WordPress URLs without posts

我们正在开发基于WordPress的更大系统,但WordPress只用于“静态”内容,系统的主要部分应该是使用外部API和显示数据。我的观点是:我是否能够告诉URL重写不要对某些URL使用WordPress内部系统,而使用其他系统?E、 g。mysite.com/news/news-title 会显示帖子,但是mysite.com/customcontent/anotherlink 将调用某种机制从API加载数据并显示它。我不知道WordPress是否能做到这一点。。谢谢你的观点。