Created
October 18, 2013 04:00
-
-
Save RhythmShahriar/7036317 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/**------------------------------------------- | |
* @package Webmaster Verification | |
* @link http://rhythmshahriar.com/ | |
* @author Rhythm <[email protected]> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
// Google, Bing, Alexa Verification Codes | |
add_action( 'wp_head', 'rhythm_verification_codes' ); | |
function rhythm_verification_codes () { | |
?> | |
<meta name="google-site-verification" content="yourVerificationKeyCode" /> | |
<meta name="msvalidate.01" content="yourVerificationKeyCode" /> | |
<meta name="alexaVerifyID" content="yourVerificationKeyCode" /> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment