Query
// WP_Query arguments
$args = array(
'post_type' => array( 'adele_front_slider' ),
'post_status' => array( 'publish' ),
'nopaging' => false,
'posts_per_page' => '50',
);
// The Query
$adele_custom_query = new WP_Query( $args );
// The Loop
if ( $adele_custom_query->have_posts() ) {
while ( $adele_custom_query->have_posts() ) {
$adele_custom_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();