forked from FameThemes/codilight-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
47 lines (42 loc) · 1.25 KB
/
Copy pathfooter.php
File metadata and controls
47 lines (42 loc) · 1.25 KB
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">
<img src="<?php echo get_template_directory_uri().'/assets/images/footer-shadow.png' ?>" alt="" />
</div>
</div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<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__( '© %1$s %2$s. All Rights Reserved.', 'codilight-lite' ), date('Y'), get_bloginfo( 'name' ) ); ?>
</p>
<p>Powered by</p>
<div class="footer-dc-image">
<a href="http://devcongress.org" class="footer-logo"></a>
</div>
</div><!-- .site-info -->
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>