Files
mccans-theme/archive-location.php
2025-05-20 14:15:03 -07:00

23 lines
474 B
PHP

<?php
get_header();
echo site()->render("locations", [
"top_image" => get_field("locations_top_image", "options"),
"headline" => get_field("locations_headline", "options"),
"intro" => get_field("locations_intro_text", "options"),
"locations" => site()->getDefaultPosts([
"title",
"latitude",
"longitude",
"address_1",
"city",
"state",
"zip",
"phone",
"url",
])
]);
get_footer();