• Resolved ghmercado

    (@ghmercado)


    hi my author page is only showing the author’s latest 9 posts. I want it to show all the author’s posts.

    here is author.php:

    <?php get_header(); ?>
    <div id=”content”>
    <div id=”leftcol”>
    <!– This sets the $curauth variable –>
    <?php
    if(isset($_GET[‘author_name’])) :
    $curauth = get_userdatabylogin($author_name);
    else :
    $curauth = get_userdata(intval($author));
    endif;
    ?>

    <h2>Posts by <?php echo $curauth->nickname; ?>:</h2>

    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    any idea why? Thank you in advance!

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘why does my author page display only 9 posts?’ is closed to new replies.