1
我在我的網站('教師'和'學生')中有2個用戶角色。我想將教師個人資料網址更改爲site.com/teacher_username,學生更改爲site.com/student/username。我如何重寫網址?!在wordpress中重寫個人檔案
我在我的網站('教師'和'學生')中有2個用戶角色。我想將教師個人資料網址更改爲site.com/teacher_username,學生更改爲site.com/student/username。我如何重寫網址?!在wordpress中重寫個人檔案
您可以使用Wordpress Rewrite API
輕鬆地重寫網址。
簡單的例子:
function custom_rewrite_basic() {
add_rewrite_rule('^leaf/([0-9]+)/?', 'index.php?page_id=$matches[1]',
'top');
}
add_action('init', 'custom_rewrite_basic');
您可以在這裏找到更多的信息:https://codex.wordpress.org/Rewrite_API/add_rewrite_rule
我如何用我簡單URL?! –