Skip to content
Advertisement

WordPress how to use two variables for Post__not_in argument in a wp_query

How can I put two variables in post__not_in like this:

JavaScript

When I do this only posts from first variable don’t show up from the others show up.

I can do that with array push like below but is there any different way to do it?

JavaScript

Advertisement

Answer

According to the wp_queryDocs, post__not_in accepts an array of post ids.

  • It’s not clear that your global $excludeHome and $excludePostSlide variables are actually arrays. So make sure that they are arrays.
  • In order to use array_push function, it’s better to use a foreach loop on the $excludePostSlide array, rather than trying to push them by their index number!
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement