-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfooter.php
More file actions
23 lines (19 loc) · 827 Bytes
/
Copy pathfooter.php
File metadata and controls
23 lines (19 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<footer class="footer">
<?php wp_nav_menu( array( 'theme_location' => 'footer' ) ); ?>
</footer>
</div> <!-- closing .main -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/modules.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/app.js"></script>
<?php wp_footer(); ?>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXX"></script><!-- change G-XXXXXXXXX with your own. -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXX'); // change G-XXXXXXXXX with your own.
</script>
<!-- End Google Analytics -->
</body>
</html>