#精品
WordPress禁止将英文半角符号转换为全角符号(字符转义)

2021-08-02 0 693 百度已收录

WordPress禁止将英文半角符号转换为全角符号(字符转义)

优站网分享给大家,记录一下,以后就知道了。菜单选项的转义用the_title即可解决。

WordPress模式使用wptextrize函数将纯文本字符转换为格式化的HTML实体。
忽略标记<pre>、<code>、<KBD>、<style>、<script>和<TT>中的文本。
对于编写简单代码文本的普通人来说,这种英语半角符号到全角符号的自动转换非常方便和智能。
但是如果您经常需要粘贴一些代码而不使用特殊的代码高亮显示插件,您会发现代码中的半角符号将转换为全角!别人复制后,就没有办法直接使用了!
所有禁止字符转义的代码如下所示。您可以根据需要选择所需的代码,并将其添加到主题的functions.php文件中:

  1. // 取消转义 Quotmarks Replacer
  2. $qmr_work_tags = array(
  3. ‘the_title’, // http://codex.wordpress.org/Function_Reference/the_title
  4. ‘the_content’, // http://codex.wordpress.org/Function_Reference/the_content
  5. ‘the_excerpt’, // http://codex.wordpress.org/Function_Reference/the_excerpt
  6. // ‘list_cats’, Deprecated. http://codex.wordpress.org/Function_Reference/list_cats
  7. ‘single_post_title’, // http://codex.wordpress.org/Function_Reference/single_post_title
  8. ‘comment_author’, // http://codex.wordpress.org/Function_Reference/comment_author
  9. ‘comment_text’, // http://codex.wordpress.org/Function_Reference/comment_text
  10. // ‘link_name’, Deprecated.
  11. // ‘link_notes’, Deprecated.
  12. ‘link_description’, // Deprecated, but still widely used.
  13. ‘bloginfo’, // http://codex.wordpress.org/Function_Reference/bloginfo
  14. ‘wp_title’, // http://codex.wordpress.org/Function_Reference/wp_title
  15. ‘term_description’, // http://codex.wordpress.org/Function_Reference/term_description
  16. ‘category_description’, // http://codex.wordpress.org/Function_Reference/category_description
  17. ‘widget_title’, // Used by all widgets in themes
  18. ‘widget_text’ // Used by all widgets in themes
  19. );
  20. foreach ( $qmr_work_tags as $qmr_work_tag ) {
  21. remove_filter ($qmr_work_tag, ‘wptexturize’);
  22. }

当然,你还可以将上面的代码分别下面的形式:

  1. /取消内容转义
  2. remove_filter(‘the_content’, ‘wptexturize’);
  3. //取消摘要转义
  4. remove_filter(‘the_excerpt’, ‘wptexturize’);
  5. //取消评论转义
  6. remove_filter(‘comment_text’, ‘wptexturize’);

如果不想修改代码的,直接下载安装 Quotmarks Replacer 插件

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

免责声明   ⚠️ 1. 本站所有资源来源于网络收集,若资源侵犯了您的合法权益, 请来信通知我们(Email: 1427707223@qq.com),我们会及时删除,给您带来的不便,我们深表歉意! 2. 分享目的仅供大家学习和交流,若使用商业用途,请购买正版授权! 否则产生的一切后果将由下载用户自行承担! 3. 会员不得使用于非法商业用途,不得违反国家法律。否则后果自负! 4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解! 5. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需! 6. 因源码具有可复制性,一经购买 ,不得以任何形式退款。 7.更多详情请点击查看

优站网 WordPress WordPress禁止将英文半角符号转换为全角符号(字符转义) https://www.zhanceo.com/14571.html

诚乃立身之本、信为道德之基

常见问题
  • 如果付款后没有弹出下载页面,多刷新几下,有问题联系客服!
查看详情
  • 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
查看详情

相关文章

联系官方客服

为您解决烦忧 - 24小时在线 专业服务

WordPress禁止将英文半角符号转换为全角符号(字符转义)-海报