Get post ids from WP_Query?

Try

$post_ids = wp_list_pluck( $latest->posts, 'ID' );

Read wp_list_pluck

Leave a Comment