contact us

This commit is contained in:
2025-05-21 08:38:41 -07:00
parent c4bd4b60b5
commit e57cc95dd0
2 changed files with 11 additions and 8 deletions

View File

@@ -1,12 +1,6 @@
<?php
// First, render the page header. You'll likely do this on every custom theme
// php file.
get_header();
// Next, gather any data that you want, and pass it to the render method to bind
// your data to a template file. In the example below, the ./tpl/index.tpl file
// will be given the current page content, and today's timestamp.
echo site()->render("index", site()->getCurrentPost(["content", "title"]));
echo site()->render("index", site()->getCurrentPost(["content", "title", "thumbnail"]));
// ...and finally, make sure you close out your page render the WordPress way!
get_footer();