Tagged Questions
3
votes
2answers
68 views
How to modify author base slug with groups and slug to use nice_nickname?
After reading the following suggestions from Jan Fabry regarding URL rewrite and the author slug I took the challenge in combining both solution in one.
Change author base slug for different roles
...
2
votes
1answer
96 views
Display posts with author in the url with custom post types
I'm having a really difficult time with this.
I have a multi-user gallery site. Each author has his own page that lists the author's posts (this is a custom post type).
I have made it so that the ...
0
votes
1answer
253 views
Removing the base “Author” or changing it to something else. is it possible?
Is it possible to remove the AUTHOR base?
Is it possible change it to postedBy so that the urls is site.com/postedBy/joe
And finally, is it possible to remove a custom taxonomy base from the url so ...
0
votes
1answer
100 views
Listing Authors - URL Formats [duplicate]
Possible Duplicate:
How do I amend the fixed “author” part in the URL?
Hullo,
I'm needing to have custom URLs for authors so for example mysite.com/team/johndoe would be the ...
2
votes
1answer
164 views
Adding more pages to author pages
At the moment I have the following code for changing the author_base slug.
/** ADD REWRITE RULES **/
function change_author_permalinks() {
global $wp_rewrite;
$wp_rewrite->author_base = ...
1
vote
4answers
651 views
Adding %author% in custom post type URL structure?
I'm trying to do some WordPress URL rewriting ...
Specifically I have custom post type that currently works like this:
http://mydomain.com/videos/post-title/
But I would like to have it located at:
...
2
votes
1answer
408 views
How to check current URL for endpoint in a template file?
What's the best way to check current url for endpoint in a template file? I have a plugin that creates endpoints in author.php... so now i'm trying to check in author.php so that only certain code is ...
1
vote
2answers
321 views
How to create rewrite endpoints it in author.php?
i'm trying to separate categories/subcategories in author.php so they each have their own endpoint link.
It's very similar to this question BUT for the life of me I can't enable the plugin provided: ...
2
votes
5answers
3k views
Change the Author Slug from Username to Nickname
Hi to the community,
is it possible to change the default username slug to nickname if is available?
By default the url is something like: http://domain.tld/author/(admin) ,
is it possible to ...
1
vote
1answer
788 views
Author url rewrite
The default author permalink is:
http://domain.com/author/{username}
How can I do something like this ?
http://domain.com/author/{username}/songs
http://domain.com/author/{username}/books
...
4
votes
2answers
1k views
Override default url for author pages?
So the default url to display a list of posts by a particular author looks like this:
http://domain.com/author/{username}
I am wondering how to change the 'author' in that url to something else?
I ...