-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
63 lines (50 loc) · 1.54 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
<?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 Algori_Blogger
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer black-wrapper">
<div class="site-info">
<div class="sub-footer">
<div class="container">
<?php
if (has_nav_menu('menu-2')) {
wp_nav_menu( array(
'theme_location' => 'menu-2',
'menu_class' => 'footer-menu pull-left',
'menu_id' => 'footer-menu',
) );
}
?>
<p class="pull-right">
<?php
/* translators: %s: Proudly powered by . */
printf( ' %s', esc_html__( 'Proudly powered by', 'algori-blogger' ) );
?>
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'algori-blogger' ) ); ?>"><u><?php
/* translators: %s: CMS name, i.e. WordPress. */
printf( ' %s', esc_html__( 'WordPress', 'algori-blogger' ) );
?></u></a>
<span class="sep"> | </span>
<?php
$my_theme = wp_get_theme();
/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Theme: %1$s by %2$s.', 'algori-blogger' ), 'Algori Blogger', '<a href="' . esc_html($my_theme->get( 'AuthorURI' )) .'"><u>Kevin Bazira</u></a>' );
?>
</p>
</div>
</div>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- body-wrapper -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>