如何将特定脚本添加到Wordpress主题的head部分

时间:2015-08-21 07:41:58

标签: php wordpress google-analytics

我想添加不同的Google Analytics脚本(我不想使用任何插件),我的多站点网络中的每个博客以及使用不同子域和一个主题的所有博客。 让我说我有

one.example.com 
two.example.com 
three.example.com

现在将所有Google Analytics脚本应用于所有子域我在header.php主题中编写了脚本(我知道这不是一个好习惯)所以现在我想在函数中使用子主题添加Google分析脚本.PHP

这样做的最佳方法是什么?使用require_once或将其写入child的functions.php或其他任何内容?

我现在在主题的header.php

中使用它
<?php if ($_SERVER['SERVER_NAME'] == 'one.example.com'){ ?>

<script>
// GA script for one.example.com
</script>

<?php }elseif ($_SERVER['SERVER_NAME'] == 'two.example.com'){ ?>

<script>
//GA script for two.example.com
</script>

<?php } ?>

0 个答案:

没有答案