forked from LiveCarta/LiveCartaWP
Changed source root directory
This commit is contained in:
47
html/wp-content/themes/lawcarta/footer-back.php
Normal file
47
html/wp-content/themes/lawcarta/footer-back.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
require_once 'inc/walker-nav-menu.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,
|
||||
'walker' => new LawCarta_Walker_Nav_Menu(),
|
||||
'theme_location' => 'bottom',
|
||||
]);
|
||||
}
|
||||
if (has_nav_menu('social')) {
|
||||
wp_nav_menu([
|
||||
'menu' => 'social',
|
||||
'menu_class' => 'nav',
|
||||
'container' => 'div',
|
||||
'container_class' => 'footer-social',
|
||||
'depth' => 1,
|
||||
'walker' => new LawCarta_Walker_Nav_Menu(),
|
||||
'hide_title' => true,
|
||||
'item_wrap' => '',
|
||||
'items_wrap' => '%3$s',
|
||||
'theme_location' => 'social',
|
||||
]);
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<div class="footer-copyright">© <?= get_option('lawcarta_company'); ?>. All rights reserved.</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div><!-- .wrapper -->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user