-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter-portfolio.php
41 lines (35 loc) · 1.3 KB
/
footer-portfolio.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
<?php
/**
* The template for displaying the footer.
* Contains the closing of the id=main div and all content after
* @package artunlimited
*/
?>
<?php if (is_single()) {
$classe = "footer footer-single";
} else {
$classe = "footer";
} ?>
<div class="<?php echo $classe; ?>">
<?php wp_footer(); ?>
<div class="infos-rodape">
<?php $contatos = get_page_by_slug('contatos'); ?>
<?php echo get_post_meta($contatos->ID,'meta_endereco',true); ?>,
<?php echo get_post_meta($contatos->ID,'meta_bairro',true); ?> -
<?php echo get_post_meta($contatos->ID,'meta_cidade_uf_pais',true); ?><br />
Tel. <?php echo get_post_meta($contatos->ID,'meta_telefone_a',true); ?>
<?php echo get_post_meta($contatos->ID,'meta_telefone_b',true); ?>
</div><!-- .infos-rodape -->
<div id="redes">
<div id="facebook">
<a class="a-redes" href="<?php echo get_option( 'mo_facebook' ); ?>"></a>
</div><!-- #facebook -->
<div id="linkedin">
<a class="a-redes" href="<?php echo get_option( 'mo_linkedin' ); ?>"></a>
</div><!-- #linkedin -->
</div><!-- #redes -->
</div><!-- .footer -->
</div><!-- #main -->
</div><!-- #page -->
</body>
</html>