tags:

views:

13

answers:

1

I took over a Wordpress site and noticed a weird bug. Despite echoing a single get_author() on posts, the pages are displaying doubles for the author (i.e., AuthorAuthor).

Any idea why this may happen?

A: 

The function may display the content already so echoing it will produce the name twice. Remove the echo, or use get_the_author().

Kwebble
Yup, that was the issue. Used get_the_author instead. Thanks!
Mike Diena