Title: bboldb's Replies | WordPress.org

---

# bboldb

  [  ](https://wordpress.org/support/users/bboldb/)

 *   [Profile](https://wordpress.org/support/users/bboldb/)
 *   [Topics Started](https://wordpress.org/support/users/bboldb/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bboldb/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bboldb/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bboldb/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bboldb/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bboldb/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Help with using NOW()](https://wordpress.org/support/topic/help-with-using-now/)
 *  Thread Starter [bboldb](https://wordpress.org/support/users/bboldb/)
 * (@bboldb)
 * [19 years, 9 months ago](https://wordpress.org/support/topic/help-with-using-now/#post-422118)
 * Okay, I think I figured it out.
 * I adapted this code presented here straight from [http://codex.wordpress.org/The_Loop](http://codex.wordpress.org/The_Loop)
 * Step 2. The second loop, get the X latest posts (except one).
 * The following code gets X recent posts (as defined in WordPress preferences) 
   save the one already displayed from the first loop and displays them according
   to Do stuff.
 *  <?php if (have_posts()) : while (have_posts()) : the_post();
    if( $post->ID 
   == $do_not_duplicate ) continue; update_post_caches($posts); ?> <!– Do stuff…–
   > <?php endwhile; endif; ?> ——————————————–
 * This will keep the random post from being the same as at least one other from
   the loop. *I think*
 * I wonder why no one wants to help me?
 * Maybe this will help someone else….

Viewing 1 replies (of 1 total)