• Resolved wapatu

    (@wapatu)


    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. https://www.wapatu.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • what is in your sidebar.php? Can you check something for latest posts??

    Thread Starter wapatu

    (@wapatu)

    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>
    Thread Starter wapatu

    (@wapatu)

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

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Newest posts in sidebar not there’ is closed to new replies.