forked from deviodigital/cleanblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
49 lines (44 loc) · 1.49 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
43
44
45
46
47
48
49
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Clean Blog
*/
?>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<?php do_action('cleanblog_footer_top'); ?>
<?php cleanblog_social(); ?>
<?php if (get_theme_mod( 'cleanblog_footer_copyright_text' ) !='') { ?>
<p class="copyright text-muted"><?php echo get_theme_mod( 'cleanblog_footer_copyright_text' ); ?></p>
<?php } else { ?>
<p class="copyright text-muted"><a href="<?php echo esc_url( __( 'https://wordpress.org/', 'cleanblog' ) ); ?>" target="_blank"><?php printf( esc_html__( 'Powered by %s', 'cleanblog' ), 'WordPress' ); ?></a> · <?php printf( esc_html__( '%1$s by %2$s.', 'cleanblog' ), 'Clean Blog theme', '<a href="http://www.deviodigital.com" rel="designer" target="_blank">Devio Digital</a>' ); ?></p>
<?php } ?>
<?php do_action('cleanblog_footer_bottom'); ?>
</div>
<!-- /.col-lg-8.col-lg-offset-2.col-md-10.col-md-offset-1 -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</footer>
<!-- /footer -->
<?php wp_footer(); ?>
<script>
$=jQuery;
$(document).ready(function(){
$("#sticker").sticky({topSpacing:0});
});
</script>
</body>
</html>