Home › Forums › WordPress › Avoid Current Post from Recent Posts List › Reply To: Avoid Current Post from Recent Posts List
October 3, 2024 at 11:50 am
#145
avneesh
Participant
Add post__not_in in your array :
$post = get_post();
get_posts( array(
'post__not_in' => array( $post->ID ),
));
- This reply was modified 3 months, 2 weeks ago by softechquery.