22 lines
313 B
PHP
22 lines
313 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the footer
|
|
*
|
|
* @package HomeProz
|
|
*/
|
|
|
|
// Prevent direct access
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<?php get_template_part('template-parts/footer/site-footer'); ?>
|
|
|
|
</div><!-- #page -->
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|