Archived topic
Author Link to WordPress BIO or About Us Page
5 replies · Started by Kelly on June 21, 2019
Hello all,
How can I have the author link on my posts popup my bio or send a user to my about us page?
Regards,
Kelly
Hi there,
you can redirect your author links using this PHP Snippet:
add_filter( 'author_link', 'my_author_link' );
function my_author_link() {
return home_url( 'about' );
}
Just make sure the 'about' slug is the slug for your about page.
Let me know if i understood correctly of if you have any more details regarding popup for author bio.
Thank you David,
Would that be added as an element?... and if so, what type of element?
Regards,
Kelly
Ah! I will grab the code-snippets plugin and apply. Thanks All!
Glad we could help :)