-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
90 lines (53 loc) · 2.26 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
</main>
<!-- PAGE FOOTER -->
<footer class = "row">
<div class ="panel">
<!-- Logo -->
<div class = "small-column-100 tablet-column-33">
<a href = "<?php bloginfo ( 'url' ) ?>" title = "<?php echo bloginfo ( 'name' ); ?> - <?php _e( 'Home page', 'wpgc' ); ?>">
<img src = "<?php bloginfo ( 'template_url' ) ?>/img/logo.png" alt = "<?php bloginfo ( 'name' ) ?>" />
</a>
<?php get_template_part( 'inc/social', 'media'); ?>
</div>
<!-- Secondary navigation -->
<nav class = "navigation vertical small-column-100 tablet-column-33">
<h4><?php _e( 'Χρησιμα Αρθρα', 'wpgc' ); ?></h4>
<?php
wp_nav_menu ( array(
'menu' => 'Footer navigation',
'theme_location' => 'footer-navigation',
'container' => '',
'menu_class' => 'footer-navigation',
'menu_id' => 'footer-navigation'
));
?>
</nav>
<!-- Secondary navigation -->
<nav class = "navigation vertical small-column-100 tablet-column-33">
<h4><?php _e( 'Μενου', 'wpgc' ); ?></h4>
<?php
wp_nav_menu ( array(
'menu' => 'Footer Main navigation',
'theme_location' => 'footer-main-navigation',
'container' => '',
'menu_class' => 'footer-navigation',
'menu_id' => 'footer-navigation'
));
?>
</nav>
</div>
<!-- Credits -->
<div class = "credits small-column-100 text-center">
<p>
© <?php echo date("Y"); ?> WordPress Greek Community | web design & development by the WPCG team
</p>
</div>
</footer>
</div> <!-- .container -->
<!-- WORDPRESS FOOTER OUTPUT -->
<?php
// Output WordPress footer stuff.
wp_footer();
?>
</body>
</html>