Je souhaite interroger plusieurs publications avec un tableau d'identifiants (remarque: je recherche un type de publication personnalisé).
Voici ce que j'ai, qui ne fonctionne pas:
$myarray = array(144, 246);
$args = array(
'post_type' => 'ai1ec_event',
'p' => $myarray
);
// The Query
$the_query = new WP_Query( $args );
Aucune astuce sur comment le faire?
Veuillez vous reporter à l'entrée du Codex pour les paramètres post/page pour WP_Query()
.
Le paramètre 'p'
prend un seul ID d'article, sous forme d'entier.
Pour passer un array of posts, vous devez utiliser 'post__in'
:
$myarray = array(144, 246);
$args = array(
'post_type' => 'ai1ec_event',
'post__in' => $myarray
);
// The Query
$the_query = new WP_Query( $args );