/* Insert Headers */
function insert_itgeeker_head() {
?>
<!-- <script>
alert('Page is loading by itgeeker.net ...');
</script> -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-你的GA衡量 ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-你的GA衡量 ID');
</script>
<?php
}
add_action('wp_head', 'insert_itgeeker_head');
/* Insert Footers*/
function insert_itgeeker_footer() {
echo '<p style="text-align: center; font-size: x-small;">网站由<a href="https://www.itgeeker.net">ITGeeker技术奇客</a>开发并管理;
隶属于<a href="https://www.geekercloud.com">GeekerCloud奇客罗方智能科技</a></p>
<p style="text-align: center; font-size: x-small;">Site designed and developed by <a href="https://www.itgeeker.net">ITGeeker</a>
which is a sub-website of <a href="https://www.geekercloud.com">GeekerCloud</a></p>
';
}
add_action( 'wp_footer', 'insert_itgeeker_footer', 100 );