Created
October 19, 2011 17:41
-
-
Save chipbennett/1299066 to your computer and use it in GitHub Desktop.
Stop Skype from hijacking phone numbers
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 | |
/** | |
* Stop Skype from hijacking phone numbers | |
* | |
* Adds a META tag to the HTML document head, that | |
* prevents Skype from hijacking/over-writing phone | |
* numbers displayed in the Theme. | |
* | |
* @link http://www.wpbeginner.com/wp-tutorials/how-to-fix-skype-overwriting-phone-numbers-in-wordpress-themes/ H/T WPBeginner | |
*/ | |
function mysite_skype_meta() { | |
?> | |
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> | |
<?php | |
} | |
add_action( 'wp_head', 'mysite_skype_meta' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment