How to add a custom URL placeholder to author archives?
Option 1 I assume custom post type generate a URL something like this domain.com/%custom-post-type%/%list% So you could write it so it looks as… since the main URL doesn’t have author before custom type you would have to do this via a function since authors are dynamic RewriteRule ^members/%author%/(.*)$ domain.com/%custom-post-type%/$1 This doesn’t specifically modify the custom … Read more