forked from LiveCarta/LiveCartaWP
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
</div><!-- .content -->
|
|
|
|
<footer>
|
|
<div class="cont">
|
|
<div class="footer-right">
|
|
<?php if (has_nav_menu('bottom')) {
|
|
wp_nav_menu([
|
|
'menu' => 'bottom',
|
|
'menu_class' => 'nav',
|
|
'container' => 'div',
|
|
'container_class' => 'footer-menu',
|
|
'depth' => 1,
|
|
'theme_location' => 'bottom',
|
|
]);
|
|
}
|
|
if (has_nav_menu('social')):
|
|
?>
|
|
<div class="footer-social">
|
|
<!--
|
|
<a href="#" class="twitter"><span class="icon-twitter"></span></a>
|
|
<a href="#" class="facebook"><span class="icon-facebook"></span></a>
|
|
-->
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="footer-copyright">© <?= get_option('lawcarta_company'); ?>. All rights reserved.</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</div><!-- .wrapper -->
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|