The method described by Skype to prevent changes to your page is to add a meta tag to the document title to tell skype not to touch numbers. However, this does not work reliably, and in my experience are usually ignored.
, Skypes, - , Skype. , . :
<span style="display:none;">_</span>
:
HTML:
Phone:<span>+381113233309</span>
:
<span>+38111-<span style="display:none;">_</span>3233309</span>
.:)
Wordpress: , functions.php, , , , [noskype] .
function cc_noskype( $atts, $content = null ) {
return '<span style="display:none;">_</span>';
}
add_shortcode('noskype', 'cc_noskype');
Enjoy