contact us

This commit is contained in:
2025-05-21 08:29:50 -07:00
parent 87e423eae7
commit 38003526c2
2 changed files with 42 additions and 4 deletions

View File

@@ -3,6 +3,18 @@
get_header();
echo site()->render("contact", site()->getCurrentPost(["content"]));
echo site()->render("contact", [
...site()->getCurrentPost([
"thumbnail",
"content",
]),
"address_1" => get_field("address_1", "options"),
"address_2" => get_field("address_2", "options"),
"city" => get_field("city", "options"),
"state" => get_field("state", "options"),
"zip" => get_field("zip", "options"),
"phone_1" => get_field("phone_1", "options"),
"phone_2" => get_field("phone_2", "options"),
]);
get_footer();