-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
executable file
·44 lines (41 loc) · 1.34 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package UWC
*/
?></div>
<footer id="colophon" class="footer" role="contentinfo">
<div class="box-3">
<div class="pure-ctnr box-1-2">
<h3 class="footer-tagline"><?php bloginfo( 'description' ); ?></h3>
<?php if ( has_nav_menu( 'social' ) ) {
wp_nav_menu( array(
'theme_location' => 'social',
'container_class' => 'footer-social',
'menu_class' => 'menu-social',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'fallback_cb' => 'false',
) );
} ?>
</div>
<?php get_sidebar( 'footer' ); ?>
</div>
<div class="footer-info">
<div class="pure-ctnr box-1-2">
<span class="footer-legal">© <?php bloginfo( 'name' ); ?>. <?php echo esc_html__( 'All rights reserved.', 'uwc' ); ?></span>
<span class="footer-author"><a href="<?php $my_theme = wp_get_theme();
echo esc_url( $my_theme->get( 'AuthorURI' ) ); ?>" rel="designer" target="_blank">Design entwickelt von Connor Bär.</a></span>
</div>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>