我需要更改此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”的文件夹下,是问题所在吗?
非常感谢您的帮助!