Page templates for custom post types
You can certainly set up a page template for custom post types. Give this a whirl: <?php /* Template Name: Your template name */ // Get header get_header(); ?> <div id=”primary”> <?php // Query post type $the_query = new WP_Query( array( ‘post_type’ => ‘cpt_name’, ‘posts_per_page’ => -1 ) ); if ( $the_query->have_posts() ) : ?> … Read more