-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer-landing.php
52 lines (41 loc) · 1.2 KB
/
footer-landing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace Jefferson\Herringbone;
/**
* Herringbone Theme Template - Footer Variant for Landing Pages.
*
* @package herringbone
* @author Jefferson Real <[email protected]>
* @copyright Copyright (c) 2022, Jefferson Real
*/
?>
<footer class="footer">
<div class="footer_inner">
<?php
Menu_Walker::output_theme_location_menu( array(
'theme_location' => 'landing-page-secondary-menu',
'menu_class' => 'footer_nav',
'nav_or_div' => 'div',
'nav_aria_label' => '',
'html_tab_indents' => 3,
'button_class' => 'button button-noback',
) );
?>
<div class="footer_legalLinks">
<?php
Menu_Walker::output_theme_location_menu( array(
'theme_location' => 'global-legal-links',
'nav_or_div' => false,
'nav_aria_label' => '',
'html_tab_indents' => 3,
'button_class' => 'button button-noback',
) );
echo "<p class=\"footer_label\">© " . date("Y") . " Hello, my name is Jeff</p>";
?>
</div>
</div>
</footer>
<?php get_template_part( 'template-parts/nav', 'mobile' );?>
<?php wp_footer(); ?>
</body>
</html>
<!--<script> console.log( 'wp-template: footer-landing.php' );</script>-->