This commit is contained in:
2025-05-20 14:15:03 -07:00
parent c074a5ef18
commit edcad561a5
179 changed files with 52733 additions and 4704 deletions

22
archive-location.php Normal file
View File

@@ -0,0 +1,22 @@
<?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();