我想知道是否有可能更改作者slug,而不是作者基础slug。
我已使用以下代码更改了基本slug:
add_action('init', 'cng_author_base');
function cng_author_base() {
global $wp_rewrite;
$author_slug = 'profile'; // change slug name
$wp_rewrite->author_base = $author_slug;
}
它完美无缺,但现在我想(如果可能的话)将作者slug更改为ID
EG。 http://www.example.com/profile/ {ID}
有什么想法吗? 谢谢