-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
36 lines (34 loc) · 1.25 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
<?php
/*
**********************************************************************
* -------------------------------------------------------------------
* Project Name : AbdalNewsTheme
* File Name : footer.php
* Author : Ebrahim Shafiei (EbraSha)
* Email : Prof.Shafiei@Gmail.com
* Created On : 2024-08-03 5:26 PM
* Description : [A brief description of what this file does]
* -------------------------------------------------------------------
*
* "Coding is an engaging and beloved hobby for me. I passionately and insatiably pursue knowledge in cybersecurity and programming."
* – Ebrahim Shafiei
*
**********************************************************************
*/
?>
<footer class="bg-light text-center text-lg-start">
<div class="container p-4">
<div class="row">
<div class="col-lg-6 col-md-12 mb-4 mb-md-0">
<h5 class="text-uppercase"><?php bloginfo('name'); ?></h5>
<p>با اشتیاق ، کارِ دستِ <a href="tel:09022223301">ابراهیم شفیعی</a></p>
</div>
</div>
</div>
<div class="text-center p-3">
© <?php echo date("Y"); ?> <?php bloginfo('name'); ?>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>