Viewing 4 replies - 1 through 4 (of 4 total)
  • EvertonB – this is a pretty major issue I’d love to resolve before pushing 3.0 out the door. Could you tell me what code you use to display the bios in your theme? Thanks!

    Thread Starter evertonb

    (@evertonb)

    Hi

    It’s not created by a plugin – it’s done using code:

    <?php $author_info=get_the_author_description(); if($author_info != "") { ?>
    <div id="subhead">
    <h3>About the Author</h3>
    <?php
    $md5 = md5( $email=get_the_author_email() );
    echo "<img class='auth-single-post' src='https://www.gravatar.com/avatar.php?gravatar_id=$md5&amp;size=75' alt='author photo' />";
    ?>
    <p><?php the_author_description(); ?></p>
    <p style="padding-top:5px;"><a href="<?php bloginfo('url'); ?>/author/<?php the_author_nickname(); ?>">See All Posts by This Author</a></p>
    <div style="clear:both;"></div>
    </div>
    <?php } ?>

    It’d be great if we can fix it as your plugin is ace, but it’s upsetting my authors!

    Thanks

    EB

    @evertonb – this issue was resolved with version 3.0 beta 7, I believe… please try it out.

    Keep in mind that, with beta 7, the location of template files has changed.

    Thread Starter evertonb

    (@evertonb)

    It worked – brilliant! Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Yet Another Related Posts Plugin] incorrect author bios’ is closed to new replies.