21 lines
310 B
PHP
21 lines
310 B
PHP
<?php
|
|
/**
|
|
* Footer — widgets, nav, copyright.
|
|
*
|
|
* @package XShop
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
defined('ABSPATH') || exit;
|
|
?>
|
|
</main>
|
|
|
|
<footer class="xshop-footer" role="contentinfo">
|
|
<?php get_template_part('template-parts/components/site-footer'); ?>
|
|
</footer>
|
|
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|