Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Notice Board Custom Query

// WP_Query arguments
$args = array (
	'post_type'              => array( 'NoticeBoard' ),
	'nopaging'               => true,
	'posts_per_page'         => '10',
	'posts_per_archive_page' => '10',
	'ignore_sticky_posts'    => true,
	'order'                  => 'DESC',
	'orderby'                => 'date',
);

// The Query
notices = new WP_Query( $args );