-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·36 lines (31 loc) · 1.09 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
<footer>
<div class="social-links">
<div class="container">
<?php wp_nav_menu( array(
'container' => '<nav>',
'theme_location' => 'footer'
)); ?>
</div>
</div>
<div class="container footer-bottom">
<div class="search">
<?php get_search_form(); ?>
</div>
<ul class="address">
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
</ul>
<div class="copyright"><p>Designed and developed by Nadia Rasul</p></div>
</div>
</footer>
<script>
// scripts.js, plugins.js and jquery are enqueued in functions.php
/* Google Analytics! */
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]]; // Change UA-XXXXX-X to be your site's ID
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
<?php wp_footer(); ?>
<script src="https://cdn.rawgit.com/noelboss/featherlight/1.4.1/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>