Voglio interrogare più post con una matrice di ID (nota: sto interrogando un tipo di post personalizzato).
Ecco quello che ho, che non funziona:
$myarray = array(144, 246);
$args = array(
'post_type' => 'ai1ec_event',
'p' => $myarray
);
// The Query
$the_query = new WP_Query( $args );
Qualche consiglio su come farlo?