• Resolved iheartchopin

    (@iheartchopin)


    I’m going to have multiple users on my blog, thus I want the author’s name to show up whenever they post. How do I make that happen?

    If I’m not making sense, I guess an example would be this:
    postpostpostpostpost
    -Posted by Author / tags, tags / Comments

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • MichaelH

    (@michaelh)

    The WordPress Default theme has an example of the_author in the wp-content/themes/default/index.php but the code is ‘commented-out’ so it doesn’t execute. So if you wanted to display the author info with the WordPress Default theme you would change the line in wp-content/theme/default/index.php
    from:
    <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    to
    <small><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small>

    Thread Starter iheartchopin

    (@iheartchopin)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make the author show up’ is closed to new replies.