I insert author box below my post and use get_the_author to return author name but it doesn’t working. It also doesn’t working with Search post by author. Hope everyone give me solution, thank in advance.
3 comments
Comments are closed.
I insert author box below my post and use get_the_author to return author name but it doesn’t working. It also doesn’t working with Search post by author. Hope everyone give me solution, thank in advance.
Comments are closed.
Echo it out…
<?php echo get_the_author(); ?>
Though
echoing
worked for the OP, the issue could be related to setting up the post manually, as was in my case. Here is the code:As a general rule, any WP function beginning with
get_
will return the result rather than echoing it. There’s usually a corresponding function – in this case it’sthe_author()
– which will echo it.