Site logo

Archived topic

Change the author link of an article

3 replies · Started by Jeremy on February 4, 2021

Viewing posts 1–4 of 4

Hi Support,
How can I change de destination link of the author on a post?
I'd like to link to the about page instead of the author archives page.
Thanks

Hi there,

To clarify: Do you want ALL of the author links to go to the about page regardless of who it is?

If so, try this PHP snippet:

add_filter( 'author_link', 'my_author_link' );
  
function my_author_link() {
    return home_url( '/path-to-your-about-page' );
}

You can change the link within home_url( '/path-to-your-about-page' ); to the path pointing to your about page. Examples: /about, /about-us

Thanks Elvin,
Where can I add this code?

This archived topic is closed to new replies.