Permalink for posts under author
-
I amy trying to put posts under .com/contributor/name/posttitle
I’m using this in functions.php to rewrite the author slug so its .com/contributor/name/.
add_action('init', 'cng_author_base'); function cng_author_base() { global $wp_rewrite; $author_slug = 'contributor'; $wp_rewrite->author_base = $author_slug; }However because i have this
/contributor/%author%/%postname%/
in the permalink settings I get the below as links to the author page.
.com/contributor/contributor/name/
Any idea how to make this happen via code or default wordpress settings?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Permalink for posts under author’ is closed to new replies.