Co-authors show up twice
-
Hi, everyone.
Whenever I activate Co-Authors Plus, the authors get echoed one line before getting returned to the page. The result is that the names show up once at the very top of my page, from the echo, and then they show up again below my title, from the return, where they should be.
I’ve traced this behavior to the file
template-tags.php
. In that file,coauthors__echo( $tag, $type = 'tag', $separators = array(), $tag_args = null, $echo = true )
is where authors get echoed and returned.if( $echo ) echo $output; return $output;
The first thing I tried was to set
$echo = false
, but I guess another function is specifically passingtrue
tocoauthors__echo
. In the past I’ve fixed this by simply commenting outecho $output;
, but of course, after every update, this gets undone.Is anyone else experiencing this behavior or am I just doing something wrong?
- The topic ‘Co-authors show up twice’ is closed to new replies.