Cool, yeah that’s what I’m looking for.
The linked tutorial in that thread recommends creating a custom functions plugin. Is there way to do this without that plugin in GeneratePress? I like to limit the number plugins used.
Tutorial: http://justintadlock.com/archives/2013/01/29/how-to-change-your-author-archive-link
Quote:
“This tutorial will teach you a few techniques for dealing with this. Most of the code samples in this tutorial should go into a custom functions plugin…
…Point the URL to your “about” page
I like this option. Many sites have an “about” or “about me” page. This would be far more useful than another archive listing the same posts listed in your regular posts archive.
The following code will handle that scenario. Just replace about with the slug of the page you want to point to on your site.
add_filter( 'author_link', 'my_author_link' );
function my_author_link() {
return home_url( 'about' );
}