-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
37 lines (29 loc) · 1.23 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
</div>
<footer id="footer" class="<?php w3css_block_class('footer', 'w3-white w3-margin-top w3-card') ?>" style="clear:both" role="contentinfo">
<?php if ( is_active_sidebar( 'footer-widget-area' ) ) : ?>
<div class="<?php w3css_block_class('footer_content', 'w3-content w3-padding-16') ?>">
<div class="w3-row widget-area">
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
</div><!-- .widget-area -->
</div>
<?php endif; ?>
<?php if (w3css_option('copyright')): ?>
<div id="copyright" class="<?php w3css_block_class('copyright', 'w3-dark-grey powered-by') ?>">
<div class="<?php w3css_block_class('copyright_content', 'w3-content w3-padding-16 w3-center w3-small') ?>">
<?php
printf(
/* translators: %s: WordPress. */
esc_html__( 'Powered by %s with %s.', 'w3css-starter' ),
'<a href="' . esc_url( __( 'https://github.com/webarthur/', 'w3css-starter' ) ) . '">webarthur</a>',
'<a href="' . esc_url( __( 'https://www.w3schools.com/w3css/', 'w3css-starter' ) ) . '">W3.CSS</a>'
);
?>
</div>
</div><!-- .copyright -->
<?php endif; ?>
<?php do_action('w3css_block_footer'); ?>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>