This repository was archived by the owner on Feb 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
62 lines (57 loc) · 1.65 KB
/
footer.php
File metadata and controls
62 lines (57 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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 Alchemist
*/
?>
<footer id="colophon" class="site-footer">
<nav id="social-icons">
<?php
wp_nav_menu( array(
'theme_location' => 'social-menu',
'menu_id' => 'social-menu',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>'
) );
?>
</nav><!-- #social-icons -->
<div class="site-info">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'alchemist' ) ); ?>" target="_blank"><?php
printf('Powered by WordPress');
?></a>
<span class="sep"> | </span>
<?php
printf('Theme: <a href="https://github.com/Track3/Alchemist">Alchemist</a> by <a href="https://www.xxxlbox.com" target="_blank">Track3</a>' );
?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #site-wrapper -->
<aside id="site-sidebar">
<div class="sidebar-wrapper">
<div class= "sidebar-container">
<div class="sidebar-inner">
<div class="btn-hide-sidebar">
<a class="sidebar-toggle" onclick="ToggleSidebar()"><i class="fas fa-times"></i></a>
</div>
<nav id="site-navigation">
<?php
wp_nav_menu( array(
'theme_location' => 'primary-menu',
'menu_id' => 'primary-menu',
) );
?>
</nav><!-- #site-navigation -->
<?php get_search_form();
if(is_dynamic_sidebar()) dynamic_sidebar('sidebar');?>
</div>
</div>
</div>
</aside><!-- #site-sidebar -->
<?php wp_footer(); ?>
</body>
</html>