post__in works but also prints the word Array
Array is how PHP represents an array when it is converted to a string: echo array( /* anything in here */ ); // output: Array Fortunately for you, PHP doesn’t really like converting arrays to strings, so it will give an error like this: PHP Notice: Array to string conversion in /somefile.php on line 345 … Read more