如何更改此罕见的“自定义帖子类型”存档URL

时间:2019-05-16 23:47:06

标签: wordpress url-rewriting

我需要更改此URL:

mysite.com/installation_folder/?post_type=event&when=weekend

mysite.com/installation_folder/whats-happening-this-weekend

我尝试使用此功能,但不起作用:

function my_custom_rewrite_rule() {
  add_rewrite_rule("^installation_folder/whats-happening-this-([^/]+)/?",'index.php?post_type=event&when=$matches[1]','top');
}
add_action('init', 'my_custom_rewrite_rule', 10, 0);

我已经冲洗了所有东西,但没有任何效果。我的WP安装在名为“ installation_folder”的文件夹下,是问题所在吗?

非常感谢您的帮助!

0 个答案:

没有答案