Forums

[resolved] Newest posts in sidebar not there (4 posts)

  1. wapatu
    Member
    Posted 2 years ago #

    I have been searching and did find a few solutions, but I'm really not sure how to proceed. My latest posts don't post in my sidebar under recent posts. I think it's a simple solution, but I don't know what entry to make and I don't know which template I would make the change in. The latest post also doesn't come up in Blog Catalog and other sites that I have registered. Any help would be appreciated. http://www.wapatu.com

  2. ryans149
    Member
    Posted 2 years ago #

    what is in your sidebar.php? Can you check something for latest posts??

  3. wapatu
    Member
    Posted 2 years ago #

    It shows 10 posts, but not the most recent 2 posts. This doesn't happen with the comments. As a comment is posted it shows up in the sidebar right away. The latest posts do show up on all my site pages where they should, just not in the sidebar.

    Here's what's related to recent posts in my sidebar, I think! :)

    <li> <h2>Recent Post</h2>
    				<ul>
    
    <?php
    $myposts = get_posts('numberposts=10&offset=1');
    foreach($myposts as $post) :
    ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title();
    ?></a></li>
    <?php endforeach; ?>
    
    </ul>
  4. wapatu
    Member
    Posted 2 years ago #

    Found a post by TRISHAM. I needed to remove &offset=1.

    Thank you!

Topic Closed

This topic has been closed to new replies.

About this Topic