Answer the question
In order to leave comments, you need to log in
How to make user page address in wordpress?
How to make your user page URLs in wordpress.
There is a user profile template, now the access address to this page looks like thishttp://site.ru/id123456
add_action('init', 'do_rewrite');
function do_rewrite(){
add_rewrite_rule('^id([^/]*)?$','index.php?pagename=user&id=$matches[1]','top');
http://site.ru/123456
http://site.ru/username
http://site.ru/pupkin
http://site.ru/vasya
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question