WordPress consulta múltiples identificaciones de publicaciones
$myarray = array(144, 246, 537);
$args = array(
'post_type' => 'post', // 'page' or 'custom-post-type-name'
'post__in' => $myarray
);
$the_query = new WP_Query( $args );
gtamborero