Wordpress change url from http:// to tel:

社会主义新天地 提交于 2019-11-29 17:32:07

Granted you're comfortable with a little jQuery, load it up in WordPress and paste this into your header, or create an add_action for wp_head.

<script type="text/javascript">
jQuery(document).ready(function(){

  var href_value;

  href_value = jQuery('li.phone a').attr('href');

  href_value = href_value.replace('http://','tel:');

  jQuery('li.phone a').attr('href',href_value);

});
</script>

Let me know if that worked for you.

Use my plugin - it's simpler - plus putting jQuery directly into the header is a bit messy. http://wordpress.org/extend/plugins/telephone-number-linker/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!