-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·25 lines (24 loc) · 927 Bytes
/
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.1
*/
?>
<footer id="footer" role="contentinfo">
<div class="container">
<a id="logotipo" class="logotipo logotipo-rodape" href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<img src="<?php echo get_field('logotipo_rodape', get_option( 'page_on_front' )); ?>" class="img-responsive"/>
</a>
<p> © Copyright <?php echo date('Y') ?> - <?php bloginfo('name'); ?> - Todos direitos reservados</p>
</div>
<a href="http://bigodesign.com.br" target="_blank" id="bigo" title="Feito com espuma de barbear!"> Desenvolvido por <strong>BIGO Design</strong></a>
</footer>
<?php wp_footer(); ?>
</body>
</html>