-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
129 lines (93 loc) · 3.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
/**
* The theme's footer file that appears on EVERY page.
*
* @since 0.1.0
* @package automated-logistics-systems
*/
// Don't load directly
if ( ! defined( 'ABSPATH' ) ) {
die;
}
?>
<?php // #site-content ?>
</section>
<footer id="site-footer">
<div class="footer-widgets">
<div class="row">
<?php
$footer_columns = get_theme_mod( 'als_footer_columns', 4 );
for ( $index = 0; $index < $footer_columns; $index++ ) {
?>
<div class = "small-12 medium-<?php echo ( 12 / $footer_columns ); ?> columns">
<?php dynamic_sidebar( 'footer-' . ( $index + 1 ) ); ?>
</div>
<?php
}
?>
</div>
</div>
<div class="footer-connect text-center">
<div class="row">
<div class="small-12 columns">
<a href="<?php bloginfo( 'url' ); ?>" title="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>">
<?php
echo wp_get_attachment_image( get_theme_mod( 'als_footer_logo_image', 1 ), 'medium', false, array(
'title' => get_bloginfo( 'name' ) . ' - ' . get_bloginfo( 'description' ),
'alt' => get_bloginfo( 'name' ) . ' - ' . get_bloginfo( 'description' ),
'class' => 'aligncenter',
) );
?>
</a>
<div class="copyright">
<?php echo sprintf( __( 'Copyright © %d | All Rights Reserved | %s, inc.', THEME_ID ), date( 'Y' ), get_bloginfo( 'name' ) ); ?>
</div>
</div>
</div>
<div class="social row">
<div class="small-12 columns">
<?php
$social_accounts = array(
'als_facebook' => array(
'label' => 'Facebook',
'icon' => 'facebook-square',
),
'als_twitter' => array(
'label' => 'Twitter',
'icon' => 'twitter-square',
),
'als_pinterest' => array(
'label' => 'Pinterest',
'icon' => 'pinterest-square',
),
'als_linkedin' => array(
'label' => 'LinkedIn',
'icon' => 'linkedin-square',
),
'als_instagram' => array(
'label' => 'Instagram',
'icon' => 'instagram',
),
);
foreach ( $social_accounts as $key => $social ) :
if ( get_theme_mod( $key, '' ) !== '' ) : ?>
<a class="social-icon" href="<?php echo get_theme_mod( $key, '' ); ?>" target="_blank" title="<?php echo sprintf( __( 'Connect with us on %s', THEME_ID ), $social['label'] ); ?>">
<span class="fa fa-<?php echo $social['icon']; ?>"></span>
</a>
<?php endif;
endforeach;
if ( get_theme_mod( 'als_rss_show', false ) === true ) : ?>
<a class="social-icon" href="<?php bloginfo( 'rss2_url' ); ?>" title="<?php _e( 'Get our RSS Feed', THEME_ID ); ?>">
<span class="fa fa-rss-square"></span>
</a>
<?php endif; ?>
</div>
</div>
</div>
</footer>
</div>
<?php // #wrapper ?>
</div>
<?php wp_footer(); ?>
</body>
</html>