【发布时间】:2016-11-21 02:59:28
【问题描述】:
我正在尝试修改的帖子的当前永久链接结构包括一个日期,它在设置页面中配置,如:“/%year%/%monthnum%/%day%/%category%/%postname %/"
示例帖子网址:http://example.com/2016/09/11/category/child-category/long-post-slug-is-printed-here/
我的问题是我不知道如何修改带有特定标签的帖子的永久链接结构,例如,如果我有一个标签“permalink-struc-2”,我添加它在我的帖子中,我想将永久链接重写为:http://example.com/category/child-category/long-post-slug-is-printed-here/ 日期应从帖子固定链接中删除。
我尝试过使用 wp 过滤器“post_link”
add_filter('post_link', array($this, 'change_permalink_date_structure'), 1, 3);
但最终发生的事情是 url 发生了变化,但是当我尝试从缩短的 url 访问帖子时,它仍然被重定向到原来的 -> http://example.com/2016/09/11/category/child-category/long-post-slug-is-printed-here/
有人可以帮忙解决这个问题吗?
谢谢
【问题讨论】:
-
你能告诉我真正想要实现什么吗?
-
我想更改带有特定标签的帖子的永久链接结构
-
你当前的网址是什么??
-
我在问题描述中发布了网址,我无法发布真实的网址,因为该项目是机密的。
标签: php wordpress url-rewriting permalinks