Viewing 1 replies (of 1 total)
  • From the FAQ:

    How do I add Co-Authors Plus support to my theme?
    If you’ve just installed Co-Authors Plus, you might notice that the bylines are being added in the backend but aren’t appearing on the frontend. You’ll need to add the template tags to your theme before the bylines will appear.

    So:

    <b>By <?php if ( function_exists( 'coauthors_posts_links' ) ) {
        coauthors_posts_links();
    } else {
        the_author_posts_link();
    } ?></b>
    <br><i><?php
    $value = get_cimyFieldValue(get_the_author_ID(), 'TITLE');
    echo cimy_uef_sanitize_content($value);
    ?></i>
Viewing 1 replies (of 1 total)

The topic ‘Custom display multiple authors’ is closed to new replies.