Appliance Type Loop
// WP_Query arguments $args = array( ); // The Query $query_appliance_type = new WP_Query( $args ); // The Loop if ( $query_appliance_type->have_posts() ) { while ( $query_appliance_type->have_posts() ) { $query_appliance_type->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();