-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
34 lines (31 loc) · 1005 Bytes
/
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
<?php
$logo = get_option('logo');?>
<footer class="footer_section">
<div class="center">
<div class="footer_main">
<?php if( !empty( $logo )):?>
<div class="footer_right">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<img src="<?php echo esc_url($logo) ?>" alt="<?php bloginfo('name'); ?> "/>
</a>
</div>
<?php endif;?>
<div class="footer_left">
<div class="footer_col">
<p> © <?php echo date('Y'); ?> Pinzolo Theme</p>
<p> Made on the Gold Coast by <a href="https://thriveweb.com.au/" target="_blank">THRIVE</a></p>
<p class="powered_by"> Powered by <a href="http://wordpress.org/" title="WordPress">WordPress</a></p>
</div>
<div class="footer_col">
<p>SOCIAL</p>
<?php my_social_media_icons(); ?>
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>