From 75d69e964f02100c74118fb437c7194436b880f4 Mon Sep 17 00:00:00 2001 From: Mohamad Fahmi Date: Sun, 20 Jul 2014 16:27:15 +0700 Subject: [PATCH] add wmt --- system/includes/functions.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index 1644e78..9f9efca 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -1064,6 +1064,15 @@ EOF; } } +// Google Web Master Tool +function wmt(){ + $wmt_id = config('google.wmt.id'); + $meta_wmt = ''; + 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; -} \ No newline at end of file +}