-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
32 lines (28 loc) · 1.14 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
<?php // Footer
include("lib/admin/get-theme-options.php"); // load theme options
?>
<div id="footer">
<?php
if ($lc_theme_show_nav == "true") { ?>
<div id="nav">
<?php theme_nav(); ?>
</div>
<?php }
?><br />
© <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a><br />
Powered by <a href="http://wordpress.org" target="_blank">WordPress</a> and <a href="http://launchchimp.com" target="_blank" title="WordPress Powered Landing Pages With MailChimp">LaunchChimp</a>
</div><!--#end footer-->
</div><!--#end container-->
<div class="hide">
<?php wp_footer(); ?>
</div>
<!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID.
mathiasbynens.be/notes/async-analytics-snippet -->
<script>
var _gaq=[['_setAccount','<?php echo $lc_google_analytics_key; ?>'],['_trackPageview'],['_trackPageLoadTime']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>