我想更改“我的帐户”页面的地址
它现在在网站URL之后显示my-account
。
即
Website URL/my-account
我想把它变成myaccount 例如
website URl/myaccount
答案 0 :(得分:2)
有两种方法可以做同样的事,
1)您可以从WP-Admin->Pages->My Account
页面更改slug。
2)通过定义自定义重写规则,
function custom_rewrite_tag() {
add_rewrite_tag('%myaccount%', 'my-account');
}
add_action('init', 'custom_rewrite_tag', 10, 0);