Support

Account

Home Forums Front-end Issues Display all posts with special treatment for relationships Reply To: Display all posts with special treatment for relationships

  • I believe posts__not_in accepts an array not a string. You have an array with a single string it in it. It needs to be like:

    
    'post__not_in' => array(1,2,4,5)
    

    Remove your implode and see if that does the trick.