Queries for post_type
// WP_Query arguments $args = array( 'post_type' => array( 'post_type_1' ), 'post_status' => array( 'publish' ), 'nopaging' => false, 'paged' => '1', 'posts_per_page' => '10', 'order' => 'ASC', 'orderby' => 'id', ); // The Query $query = new WP_Query( $args );