snippetjbp
// WP_Query arguments
$args = array(
'post_type' => array( 'jbp_pro' ),
'post_status' => array( 'published' ),
'nopaging' => false,
'posts_per_page' => '50',
'order' => 'ASC',
'orderby' => 'title',
);
// The Query
$jbpcustomq = new WP_Query( $args );
// The Loop
if ( $jbpcustomq->have_posts() ) {
while ( $jbpcustomq->have_posts() ) {
$jbpcustomq->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();