如何从POST Slug中删除类别

时间:2014-06-20 作者:drake035

我想删除post slug中的类别,例如post slug like“http://my_site.com/uncategorized/hello-world/“将成为”http://my_site.com/hello-world/“。

我的搜索只给出了如何从slug中删除“category”一词的结果,这是另一个问题。

1 个回复
最合适的回答,由SO网友:Aris Blevins 整理而成

正如@E所指出的,这是在Permalink设置中处理的。

要访问这些设置,请查看屏幕左侧的管理菜单。

在“设置”下,单击“永久链接”

在“永久链接”中,您可以看到有关如何格式化永久链接的各种选项。

听起来您想使用“Post name”选项。选择该选项并“保存更改”

那应该会让你恢复正常的。

结束

相关推荐

Show Pages in Categories

通过将此代码添加到函数中,我创建了category函数。php:function page_category() { register_taxonomy_for_object_type(\'category\', \'page\'); } // Add to the admin_init hook of your theme functions.php file add_action( \'init\', \'page_category\' ); 但问