Browse Source

add wmt

pull/62/head
Mohamad Fahmi 11 years ago
parent
commit
75d69e964f
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      system/includes/functions.php

+ 10
- 1
system/includes/functions.php View File

@ -1064,6 +1064,15 @@ EOF;
}
}
// Google Web Master Tool
function wmt(){
$wmt_id = config('google.wmt.id');
$meta_wmt = '<meta name="google-site-verification" content="' . $wmt_id . '" />';
if (!empty($wmt_id)) {
return $meta_wmt;
}
}
// Menu
function menu(){
$menu = config('blog.menu');
@ -1725,4 +1734,4 @@ function is_csrf_proper($csrf_token)
return true;
}
return false;
}
}

Loading…
Cancel
Save