• I need to show multiple authors in the byline on my site, http://www.PoppycockReviews.com. I would like it to show multiple authors on the home page, on the single post, etc. I have Co Authors Plus installed but it’s not working. This is the code I added to single.php:

    h1 class=”post-title”><?php the_title(); ?></h1>
    <p class=”post-byline”><?php _e(‘by’,’hueman’); ?> <?php the_author_posts_link(); ?> · <?php the_time(get_option(‘date_format’)); ?></p>

    I still don’t know how to show bylines on the homepage. I wish this was built into the theme. Can someone help??

Viewing 1 replies (of 1 total)
  • You need to replace this:

    <?php the_author_posts_link(); ?>

    With this:

    <?php if ( function_exists( 'coauthors_posts_links' ) ) {
    	    coauthors_posts_links();
    	} else {
    	    the_author_posts_link();
    	}
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Show multiple authors in byline???’ is closed to new replies.