Showing posts with label Ganti Template. Show all posts
Showing posts with label Ganti Template. Show all posts

Friday, November 6, 2015

Verify Google Webmaster, Alexa dan Ganti Template pada YT GRAB

//verify google web master
$google = array("honocoroko.com"=>"MxDy91MGzFWvfvlxXSS8068OxDNW5U9nJEpBjTwKXZ4");
if (!empty($google[$_SERVER['SERVER_NAME']]))
{
echo '<meta name="google-site-verification" content="'.$google[$_SERVER['SERVER_NAME']].'"/>';
}
//verify alexa
$alexa = array("honocoroko.com"=>"cY-JMbLyBvWsmZ53n1RQaRhiXoE");
if (!empty($alexa[$_SERVER['SERVER_NAME']]))
{
echo '<meta name="alexaVerifyID" content="'.$alexa[$_SERVER['SERVER_NAME']].'"/>';
}
//ganti template, template mulai dari theme1.min.css sampai theme17.min.css
$template = array("honocoroko.com"=>"theme2.min.css");
if (!empty($template[$_SERVER['SERVER_NAME']]))
{
echo '<link href="/css/'.$template[$_SERVER['SERVER_NAME']].'" rel="stylesheet">';
}
else
{
echo '<link href="/css/bootstrap.min.css" rel="stylesheet">';
}