Wordpress - Author link

Discussion in 'WordPress' started by sarahturned, Jun 25, 2009.

  1. #1
    On my blog, the author link under each article is hyperlinked.

    The code in index.php is

    <span class="author">By <?php the_author_posts_link() ?> </span>

    How do I change it so that the name is not hyperlinked?
     
    sarahturned, Jun 25, 2009 IP
  2. jpang

    jpang Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Change
    <?php the_author_posts_link() ?>
    PHP:
    to

    <?php the_author(); ?>
    PHP:
     
    jpang, Jun 25, 2009 IP