Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 18, 2013 04:00
Show Gist options
  • Save RhythmShahriar/7036317 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/7036317 to your computer and use it in GitHub Desktop.
<?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