Home Forums WordPress Avoid Current Post from Recent Posts List

Viewing 1 reply thread
  • Author
    Posts
    • #144
      avi
      Participant

      I want to get all recent post list but not that post which is opened
      This is My Code :

      get_posts( array(
              'posts_per_page' => 10, 
              'post_type' => 'post',
               'orderby'   => 'post_date',
               'order' => 'DESC'
          ));
    • #145
      avneesh
      Participant

      Add post__not_in in your array :

      $post = get_post();
      get_posts(  array(
                      'post__not_in' => array( $post->ID ),
          ));
Viewing 1 reply thread
  • You must be logged in to reply to this topic.
Scroll to Top