I have tried that as well but what happens is that all posts are then loaded from ALM, not just the remaining posts that are related between the two custom post types.
The WP_Query I have only returns related posts between posts and the Custom post type.
$news = new WP_Query ( array(
'post_type' => 'post',
'connected_type' => 'games2posts',
'connected_to' => $post->ID,
'posts_per_page' => '5'
));
Is there a way to pass in the WP_Query args into the ALM shortcode?
Thanks