mirror of
https://gh.wpcy.net/https://github.com/BracketSpace/WP-Admin-Reference.git
synced 2026-07-15 11:17:15 +08:00
31 lines
658 B
PHP
31 lines
658 B
PHP
<?php
|
|
/**
|
|
* Theme footer
|
|
*
|
|
* @package wpadminref
|
|
*/
|
|
|
|
?>
|
|
</div>
|
|
<!-- wpbody -->
|
|
</div>
|
|
<!-- wpcontent -->
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php wp_footer(); ?>
|
|
<script type="text/javascript">
|
|
/* <![CDATA[ */
|
|
var postBoxL10n = {"postBoxEmptyString":"Drag boxes here"};
|
|
/* ]]> */
|
|
</script>
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<?php // phpcs:ignore ?>
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62399988-9"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'UA-62399988-9');
|
|
</script>
|
|
</body>
|
|
</html>
|