<?php
$pageID = get_the_ID();
$products = new WP_Query(array(
'post_type' => 'board-post',
'orderby'=> 'date',
)
);
if($products->have_posts()) : ?>
<?php while($products->have_posts()): $products->the_post(); ?>
<?php endwhile; ?>
<?php endif; wp_reset_query(); ?>