I've create a custom post type to record data which will be displayed as a list/table on an existing page.
The data does not need to have it's own page. The data will be displayed on an existing page in a table.
I was using Advanced Custom Fields: Repeater but because of the large data set the page was taking a long time to process the data in the admin section.
I've created the custom post, no issues here.
I just don't know how to display the custom post data in an existing template.
<?php query_posts( array('post_type'=>array('page','Custom_Post_Type'))); ?>
When I add this code before the loop it display all pages and all custom post types. I just want it to display the individual page + All Custom Post Types