-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
56 lines (49 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
<?php the_avdelningarna('footer-aria'); ?>
<footer>
<?php if ( is_active_sidebar( 'contact' ) ) : ?>
<ul id="footer-sidebar">
<?php dynamic_sidebar( 'contact' ); ?>
</ul>
<?php endif; ?>
<div>
<?php if ( is_active_sidebar( 'action' ) ) : ?>
<div class="action-btn">
<?php dynamic_sidebar( 'action' ); ?>
</div>
<?php endif; ?>
</div>
<div class="social-aria"><?php
if (!empty(get_option( 'facebook' ))){
?>
<a href="<?php echo esc_attr( get_option( 'facebook' ) )?>"><img src="<?php echo get_template_directory_uri()."/images/social/facebook.png"; ?>"></a>
<?php
}
if (!empty(get_option( 'instagram' ))){
?>
<a href="<?php echo esc_attr( get_option( 'instagram' ) )?>"> <img src="<?php echo get_template_directory_uri()."/images/social/instagram.png"; ?>"></a>
<?php
}
if (!empty(get_option( 'twitter' ))){
?>
<a href="<?php echo esc_attr( get_option( 'twitter' ) )?>"> <img src="<?php echo get_template_directory_uri()."/images/social/twitter.png"; ?>"></a>
<?php
}
if (!empty(get_option( 'googleplus' ))){
?>
<a href="<?php echo esc_attr( get_option( 'googleplus' ) )?>"> <img src="<?php echo get_template_directory_uri()."/images/social/google plus.png"; ?>"></a>
<?php
}
if (!empty(get_option( 'youtube' ))){
?>
<a href="<?php echo esc_attr( get_option( 'youtube' ) )?>"> <img src="<?php echo get_template_directory_uri()."/images/social/youtube.png"; ?>"></a>
<?php
}
?></div>
<div><?php the_kårnamn('light') ?></div>
<div>Tema skapat av <a class="light" href="https://max.timje.se">Max Timje</a> för scoutkårer</div>
</footer>
<?php
wp_footer();
?>
</body>
</html>