-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
42 lines (41 loc) · 1.29 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
<?php
/**
* Theme Footer Section for our theme.
*
* Displays all of the footer section and closing of the #main div.
*
* @package ThemeGrill
* @subpackage ColorMag
* @since ColorMag 1.0
*/
?>
</div><!-- .inner-wrap -->
</div><!-- #main -->
<?php if ( is_active_sidebar('colormag_advertisement_above_the_footer_sidebar') ) { ?>
<div class="advertisement_above_footer">
<div class="inner-wrap">
<?php dynamic_sidebar('colormag_advertisement_above_the_footer_sidebar'); ?>
</div>
</div>
<?php } ?>
<?php do_action( 'colormag_before_footer' ); ?>
<footer id="colophon" class="clearfix">
<?php get_sidebar( 'footer' ); ?>
<div class="footer-socket-wrapper clearfix">
<div class="inner-wrap">
<div class="footer-socket-area">
<div class="footer-socket-right-section">
<?php if( get_theme_mod( 'colormag_social_link_activate', 0 ) == 1 ) { colormag_social_links(); } ?>
</div>
<div class="footer-socket-left-sectoin">
<?php do_action( 'colormag_footer_copyright' ); ?>
</div>
</div>
</div>
</div>
</footer>
<a href="#masthead" id="scroll-up"><i class="fa fa-chevron-up"></i></a>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>