I only want to Display Author Link in authors bio

the_author_link() displays author name with hyperlink. I only want authors link to display and not authors name with hyperlink. how i suppose to do that?.
thanks

2 Answers
2

You may consider using this function :

get_the_author_meta('url')

You can see here the implementation of the function get_the_author_link() and you will see how they construct the link with name.

Leave a Comment