Available Dogs

function display_dog_listings() {
$args = array(
‘post_type’ => ‘dog’,
‘posts_per_page’ => -1
);
$query = new WP_Query($args);
if($query->have_posts()) {
$output = ‘

‘;
wp_reset_postdata();
}
return $output;
}
add_shortcode(‘dog_listings’, ‘display_dog_listings’);