K&L Cleaners Coupon Query
// WP_Query arguments
$args = array (
'post_type' => array( 'coupons' ),
'pagination' => false,
'posts_per_page' => '-1',
'order' => 'DESC',
'orderby' => 'menu_order',
);
// The Query
$coupon_query = new WP_Query( $args );
// The Loop
if ( $coupon_query->have_posts() ) {
while ( $coupon_query->have_posts() ) {
$coupon_query->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();