-
Notifications
You must be signed in to change notification settings - Fork 4
/
footer.php
47 lines (42 loc) · 1.35 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Codilight_Lite
*/
?>
</div> <!--#content-inside-->
</div><!-- #content -->
<div class="footer-shadow container">
<div class="row">
<div class="col-md-12">
<?php
$footer_shadow_image = get_template_directory_uri().'/assets/images/footer-shadow.png';
?>
<img src="<?php echo esc_url( $footer_shadow_image ); ?>" alt="" />
</div>
</div>
</div>
<footer id="colophon" class="site-footer" >
<div class="container">
<?php if ( has_nav_menu( 'footer' ) ): ?>
<div class="footer-navigation">
<?php wp_nav_menu( array('theme_location' => 'footer', 'container' => 'footer-menu', 'fallback_cb' => false ) ); ?>
</div>
<?php endif; ?>
<div class="site-info">
<p>
<?php printf( esc_html__( 'Copyright © %1$s %2$s. All Rights Reserved.', 'codilight-lite' ), date('Y'), get_bloginfo( 'name' ) ); ?>
</p>
<?php printf( esc_html__( 'Codilight Theme by %1$s', 'codilight-lite' ), '<a href="'. esc_url( 'http://www.famethemes.com/themes' ) .'">FameThemes</a>' ); ?>
</div><!-- .site-info -->
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>