-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
32 lines (32 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
<div class="wrap">
<footer class="footer" role="contentinfo">
<button type="button" class="page_top_btn">↑<span class="btn_txt"><?php _e( 'PageTop', 'moca' ) ?></span></button>
<div class="footer_widget_wrap">
<?php
if( is_active_sidebar( 'footer-widget-area1' ) ){
dynamic_sidebar( 'footer-widget-area1' );
}
if( is_active_sidebar( 'footer-widget-area2' ) ){
dynamic_sidebar( 'footer-widget-area2' );
}
if( is_active_sidebar( 'footer-widget-area3' ) ){
dynamic_sidebar( 'footer-widget-area3' );
}
?>
</div><!-- /.footer_widget_wrap -->
<div class="copy">
<p><small class="copy_txt"><?php _e( 'Copyright', 'moca' ); ?> © <?php echo esc_html( get_bloginfo('name') ); ?> <?php _e( 'All Right Reserved.', 'moca' ); ?></small></p>
<p class="powered_txt">
<?php if ( function_exists( 'the_privacy_policy_link' ) ) {
the_privacy_policy_link();
} ?>
<?php _e( 'Powered by', 'moca' ); ?>
<a href="https://wordpress.org/"><?php _e( 'WordPress', 'moca' ); ?></a>
<?php _e( 'moca Theme by', 'moca' ); ?> <a href="https://memocarilog.info/" rel="external nofollow"><?php _e( 'memocoarilog', 'moca' ); ?></a>
</p>
</div>
</footer><!-- footer -->
</div><!-- /.wrap -->
<?php wp_footer(); ?>
</body>
</html>