-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·40 lines (36 loc) · 1.07 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
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main div element.
*
* @package Odin
* @since 2.2.0
*/
?>
<?php
$odin_general_opts = get_option( 'socials' );
$face = $odin_general_opts['facebook'];
$inst = $odin_general_opts['instagram'];
$yout = $odin_general_opts['youtube'];
$face = coloca_http($face);
?>
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="" class="centro col-sm-10">
<div class="site-info">
<span>Faccioli Films Ltda. © <?php echo date( 'Y' ); ?> </span>
</div><!-- .site-info -->
<div class="site-social">
<a class="social-img" id="facebook" target="_blanck" href='<?php echo $face;?>'></a>
<a class="social-img" id="instagram" target="_blanck" href="http://www.instagram.com"></a>
<a class="social-img" id="youtube" target="_blanck" href="http://www.youtube.com" ></a>
</div><!-- .site-social -->
</div>
<div class="clearfix"></div>
</footer><!-- #footer -->
</div><!-- .container -->
<?php wp_footer(); ?>
</body>
</html>