-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
70 lines (61 loc) · 2.39 KB
/
footer.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
</div><!-- #main -->
<footer id="colophon" role="contentinfo">
<?php
$endereco = get_theme_mod ('text_field_endereco');
$telefone = get_theme_mod ('text_field_tel');
$facebook = get_theme_mod ('url_field_fb');
?>
<div id="logo-rodape"><img src="<?php bloginfo( 'stylesheet_directory' ); ?>/images/mini-oca.png" /></div><!-- #logo-rodadpe -->
<div id="infos">
<?php bloginfo( 'name' ); ?> <?php the_date( 'Y' ); ?> - Todos os Direitos Reservados ®<br />
<?php echo $endereco; ?> - Tel.:<?php echo $telefone; ?>
</div><!-- #infos -->
<div id="brasa"><a class="a-brasa" href="http://www.brasa.art.br" target="_blank"></a></div><!-- #brasa -->
<div id="redes-rodape"><a class="a-face" href="<?php echo $facebook; ?>"></a></div><!-- #redes-rodape -->
</footer><!-- #colophon -->
<div id="menus-rodape">
<div class="menu-links">
<?php
if (has_nav_menu( 'um' )){
$menu_obj = echo_name_menu( 'um' );
wp_nav_menu( array('theme_location' => 'um', 'items_wrap'=> '<h3>'.esc_html($menu_obj->name).'</h3><ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>') );
}
?>
</div><!-- .menu-links -->
<div class="menu-links">
<?php
if (has_nav_menu( 'dois' )){
$menu_obj = echo_name_menu( 'dois' );
wp_nav_menu( array('theme_location' => 'dois', 'items_wrap'=> '<h3>'.esc_html($menu_obj->name).'</h3><ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>') );
}
?>
</div><!-- .menu-links -->
<div class="menu-links">
<?php
if (has_nav_menu( 'tres' )){
$menu_obj = echo_name_menu( 'tres' );
wp_nav_menu( array('theme_location' => 'tres', 'items_wrap'=> '<h3>'.esc_html($menu_obj->name).'</h3><ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>') );
}
?>
</div><!-- .menu-links -->
<div class="menu-links">
<?php
if (has_nav_menu( 'quatro' )){
$menu_obj = echo_name_menu( 'quatro' );
wp_nav_menu( array('theme_location' => 'quatro', 'items_wrap'=> '<h3>'.esc_html($menu_obj->name).'</h3><ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>') );
}
?>
</div><!-- .menu-links -->
<div class="menu-links">
<?php
if (has_nav_menu( 'cinco' )){
$menu_obj = echo_name_menu( 'cinco' );
wp_nav_menu( array('theme_location' => 'cinco', 'items_wrap'=> '<h3>'.esc_html($menu_obj->name).'</h3><ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>') );
}
?>
</div><!-- .menu-links -->
</div><!-- #menus-rodape -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>