23 lines
396 B
PHP
23 lines
396 B
PHP
<?php
|
|
|
|
get_header();
|
|
|
|
echo site()->render("location", [
|
|
...site()->getCurrentPost([
|
|
"title",
|
|
"thumbnail",
|
|
"intro",
|
|
"latitude",
|
|
"longitude",
|
|
"address_1",
|
|
"city",
|
|
"state",
|
|
"zip",
|
|
"phone",
|
|
"hours",
|
|
]),
|
|
"form" => do_shortcode('[contact-form-7 id="05c2e50" title="Contact form"]'),
|
|
]);
|
|
|
|
get_footer();
|