'motorcycles', // Custom post type for motorcycles 'posts_per_page' => -1, // Get all motorcycles ); $motorcycle_query = new WP_Query($args); if ($motorcycle_query->have_posts()) : echo '
'; while ($motorcycle_query->have_posts()) : $motorcycle_query->the_post(); ?>
<?php echo esc_attr($image['alt']); ?>

Mileage: miles

Model Code:

'; else: echo '

No motorcycles found.

'; endif; wp_reset_postdata(); ?>