forked from LiveCarta/LiveCartaWP
@@ -13,4 +13,7 @@ define('LAWCARTA_PORT', '');
|
||||
|
||||
define('LAWCARTA_ENVIRONMENT_NAME', 'prod');
|
||||
|
||||
define('LAWCARTA_GA_CONFIG', 'UA-111488943-1');
|
||||
define('LIVECARTA_GA_CONFIG', 'UA-111488943-2');
|
||||
|
||||
$_SERVER['HTTPS'] = 'On';
|
||||
@@ -224,3 +224,14 @@ function get_lawcarta_url(){
|
||||
|
||||
return "$scheme$host$port";
|
||||
}
|
||||
|
||||
function get_lawcarta_ga_config(){
|
||||
|
||||
$res = '';
|
||||
if(wp_get_theme() == 'LawCarta'){
|
||||
$res = LAWCARTA_GA_CONFIG;
|
||||
}elseif(wp_get_theme() == 'LiveCarta'){
|
||||
$res = LIVECARTA_GA_CONFIG;
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
@@ -41,6 +41,17 @@ require_once 'inc/walker-nav-menu.php';
|
||||
<noscript>
|
||||
<img height="1" width="1" src="https://www.facebook.com/tr?id=233239914388499&ev=PageView&noscript=1"/>
|
||||
</noscript>
|
||||
<!-- Google Analytics -->
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '<?=get_lawcarta_ga_config()?>' , 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
<!-- End Google Analytics -->
|
||||
<?php endif;?>
|
||||
|
||||
<?php wp_head(); ?>
|
||||
|
||||
Reference in New Issue
Block a user