function display_dog_listings() {
$args = array(
‘post_type’ => ‘dog’,
‘posts_per_page’ => -1
);
$query = new WP_Query($args);
if($query->have_posts()) {
$output = ‘
‘;
while($query->have_posts()) {
$query->the_post();
$output .= ‘
while($query->have_posts()) {
$query->the_post();
$output .= ‘
‘;
$output .= ‘‘;
$output .= ‘
‘;
$output .= ‘
$output .= ‘
$output .= ‘‘;
$output .= ‘
$output .= ‘
‘ . get_the_title() . ‘
‘;
$output .= ‘
Age: ‘ . get_field(‘age’) . ‘
‘;
$output .= ‘
Sex: ‘ . get_field(‘sex’) . ‘
‘;
$output .= ‘
Breed: ‘ . get_field(‘breed’) . ‘
‘;
$output .= ‘
$output .= ‘
‘;
}
$output .= ‘
‘;
wp_reset_postdata();
}
return $output;
}
add_shortcode(‘dog_listings’, ‘display_dog_listings’);