Esiste un modo per recuperare una matrice di ID post interrogati dai seguenti:
$latest = new WP_Query( array (
'orderby' => 'rand',
'posts_per_page' => 3
));
if ( $latest -> have_posts() ) : while ( $latest -> have_posts() ) : $latest -> the_post();
get_template_part( 'templates/content', 'post' );
endwhile; endif; wp_reset_postdata();
Azione supplementare:
Ho usato wp_list_pluck
per recuperare una matrice di post ID:
$post_ids = wp_list_pluck( $latest->posts, 'ID' );
Quindi ha convertito l'array in una stringa usando la funzione implode:
$post_ids_string = implode( ',', $post_ids );
Ci scusiamo per la domanda ambigua.
wp_reset_postdata
dovrebbe essere dentro non fuori l'istruzione if, altrimenti si potrebbe ripristinare dati post quando non è stato cambiato