-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
52 lines (38 loc) · 1.69 KB
/
footer.php
File metadata and controls
52 lines (38 loc) · 1.69 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
48
49
50
51
52
<footer id="footer" class="footer light-background">
<div class="container footer-top">
<div class="row gy-4">
<div class="col-lg-5 col-md-12 footer-about">
<a href="index.html" class="logo d-flex align-items-center">
<span class="sitename">Express Auto Wash</span>
</a>
<?php
if(function_exists('the_custom_logo')){
the_custom_logo();
$custom_logo_id = get_theme_mod('custom_logo');
$logo = wp_get_attachment_image_src($custom_logo_id);
}
?>
<!-- <img src="wp-content/themes/assurer_dev/assets/images/logo.png" alt="">-->
<div class="social-links d-flex mt-4">
<a href="#"><i class="bi bi-twitter-x"></i></a>
<a href="#"><i class="bi bi-facebook"></i></a>
<a href="#"><i class="bi bi-instagram"></i></a>
<a href="#"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="container copyright text-center mt-4">
<p><!-- © --><span><!-- Copyright --></span> <strong class="px-1 sitename">EXPRESS AUTO WASH</strong> <span><!-- All Rights Reserved --></span></p>
<div class="credits">
Designed by <a href="#">GodsofProgramming Web Education</a> Created For Course <a href="#">Introduction to WordPress Theme Development 2025
</div>
</div>
</footer>
<!-- Scroll Top -->
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Preloader -->
<!-- <div id="preloader"></div> -->
<?php wp_footer(); ?>
</body>
</html>