如何在post_tag slug中添加前缀或后缀? 时间:2017-03-01 作者:user109567 我想给所有添加前缀或后缀post_tag 鼻涕虫。例如,一个标记URL:example.com/tag/post-tag-slug所有此类URL都应加后缀:example.com/tag/post-tag-slug-suffix. 1 个回复 SO网友:Sonali 我们可以通过以下代码执行此操作:function custom_tag_rewrite() { add_rewrite_rule("^tag/(.+)-suffix/?$", \'index.php?post_type=post&tag=$matches[1]\', \'top\'); flush_rewrite_rules(); } add_action(\'init\', \'custom_tag_rewrite\'); 试着像这样打开http://example.com/tag/post-tag-slug-suffix 文章导航