是否在固定链接管理屏幕中添加自定义固定链接选项?

时间:2016-08-25 作者:Lazhar

我的插件有几种自定义的帖子类型,我想让它的permalink slug可以更改。我更愿意保持整洁,并将该选项添加到WordPress的永久链接管理屏幕中,位于类别库和标记库下方。

但我怎么能做到这一点,我找不到任何东西,但我知道这是可能的(Woo做到了,还有其他人)?

enter image description here

1 个回复
最合适的回答,由SO网友:Ethan O\'Sullivan 整理而成

要将自定义插件设置挂接到永久链接设置中,请使用以下选项:

add_action(\'admin_init\', \'wpse_237141_custom_permalink_section\');

function wpse_237141_custom_permalink_section() {
    add_settings_section(
        \'your_custom_id\', // ID
        \'Your Plugin Settings\', // Section title
        \'your_callback\', // Callback for your function
        \'permalink\' // Location (Settings > Permalinks)
    );
}
您需要填空以显示自己的自定义函数,但现在将在永久链接中显示您的设置。

相关推荐

即使以管理员身份也无法使用/wp-json/wp/v2/plugins API终结点

以管理员身份使用基本身份验证时,我得到一个错误代码401 Unauthorized : [rest_cannot_view_plugins] Sorry, you are not allowed to manage plugins for this site. 尝试访问GET时出错/wp-json/wp/v2/plugins 我的服务器的终结点。我可以毫无问题地获取帖子和页面信息,但当我查询插件时,我得到了401错误。我已经确认,API调用中使用的用户ID应该能够使用CLI工具管理插件:# wp use