-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
49 lines (45 loc) · 1.29 KB
/
footer.php
File metadata and controls
49 lines (45 loc) · 1.29 KB
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
<?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 Aniki
*/
?>
</div>
<!-- #content -->
<footer id="colophon" class="site-footer section-fullwidth">
<div class="row">
<div class="columns small-12">
<?php if ( has_nav_menu( 'primary' ) ): ?>
<div class="menu-primary-footer">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu', 'depth' => 1 ) ); ?>
</div>
<?php endif; ?>
<!-- .menu-primary-container -->
<div class="site-info">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'aniki' ) ); ?>">
<?php printf(
/* translators: used in the footer bottom line on the whole site*/
esc_html__( 'Proudly powered by %s', 'aniki' ), 'WordPress' ); ?>
</a>
<span class="sep"> | </span>
<?php printf(
/* translators: used in the footer bottom line on the whole site*/
esc_html__( 'Developed by %1$s.', 'aniki' ),'<a href="https://devrix.com/">DevriX</a>' ); ?>
</div>
<!-- .site-info -->
</div>
<!-- .small-12 -->
</div>
<!-- .row -->
</footer>
<!-- #colophon -->
</div>
<!-- #page -->
<?php wp_footer(); ?>
</body>
</html>