优测吧 TroubleShooting 如何解决WordPress模板将双中横线“–”转义成了单中横线的问题“-”

如何解决WordPress模板将双中横线“–”转义成了单中横线的问题“-”

点击数:2377

今天在浏览自己写的文档的时候,发现复制粘贴命令执行后报错,仔细一看,命令中的–在页面中显示为单横线-,结合网上的几个方法,找了一个最简单适合的方案,问题解决。

现象:

譬如WordPress后台编写的代码为:
./config shared –openssldir=/data/install/openssl –prefix=/data/install/openssl
但是编写完发布后,在浏览器中显示为:
./config shared -openssldir=/data/install/openssl -prefix=/data/install/openssl
莫名的少了一个横杠,就会产生问题

原因:

网上的说法,主要是WordPress的标题或者正文当中,如果带有横杠“-”的话,查看页面源代码title的时候就会发现横线会被转义为”–”,正文就会看到少了一个横杠。

解决方案:

方法一:禁用所有的 WP 转义

wordpress 自带一个专一的钩子 wptexturize,很多地方都用到了这个钩子,具体可以看看 wp 的 wp-includes/formatting.php 中看看。我们可以通过以下代码(取自水煮鱼)来取消掉这个转义:

add_filter( 'run_wptexturize', '__return_false' );

我是增加在如下图示的位置:

方法二:禁用部分的 WP 转义(推荐)

为了解决本文标题描述的这个问题,可以只是禁止 wptexturize 对标题的转义:

/** 
* WordPress 标题中的横线“-”被转义成“–”的问题 - 龙笑天下 
* https://www.ilxtx.com/wordpress-html-entity-decode-title.html 
* 20181213 更新:wp_title、single_post_title、single_cat_title、get_the_title、single_tag_title 
*/ 
remove_filter('the_title', 'wptexturize'); 
remove_filter('wp_title', 'wptexturize'); 
remove_filter('single_post_title', 'wptexturize');

方法三:把下方代码复制放到 function 文档里:

function HTML_entity_decode_title($title) 
{ 
    $title = str_replace("–", "-", $title); 
    $title = html_entity_decode($title); 
    return $title; 
} 
add_filter('the_title', 'html_entity_decode_title'); 
add_filter('wp_title', 'html_entity_decode_title');

本文来自网络,不代表优测吧立场,转载请注明出处:http://www.youceba.com/465/

作者: zhuifeng

上一篇
下一篇
0 0 投票数
Article Rating
订阅评论
提醒
guest
25 评论
最新
最旧 最多投票
内联反馈
查看所有评论
trackback

Pills tidings sheet. Generic Name. avodart 0.5 mg india?

Medicines information. Long-Term Effects. avodart side effects?

trackback

Medicines prescribing information. Long-Term Effects. dutasteride side effects in women?

Meds prescribing information. Short-Term Effects. where to buy avodart online prescription?

trackback

Medication poop leaflet. Long-Term Effects. buy generic abilify?

Meds prescribing information. Short-Term Effects. buy generic abilify?

trackback

Pills prescribing information. Mark names. buy paxil online canada?

Pills prescribing information. Cautions. paxil?

trackback

Can sperm be stolen can i buy viagra over the counter?

What is romance to a woman can i buy viagra over the counter?

trackback

What is the fastest way to get pregnant generic viagra – mastercard?

How do you makes moves on a girl green viagra pill?

trackback

What can I drink to reduce my tummy and the diet pills?

What is the healthiest alcohol or hoodia gordonii plus?

trackback

How long is nicotine detox wellbutrin xl 300mg?

How can you tell if someone smokes zyban drug?

trackback

What a man wants in a woman he wants to marry with buy kamagra oral jelly from india?

Do guys change after baby born or kamagra oral jelly buy online?

trackback

help with dissertation proposal https://dissertations-writing.org/

trackback

dissertation in spanish https://help-with-dissertations.com/

trackback

help write my dissertation https://buydissertationhelp.com/

trackback
1 年 前
trackback
trackback
trackback

slots free online https://slot-machine-sale.com/

trackback
1 年 前
trackback
1 年 前

las vegas world slots free https://slotmachinesworld.com/

trackback
1 年 前

triple seven slots https://pennyslotmachines.org/

trackback
1 年 前

central vally slots https://candylandslotmachine.com/

trackback
1 年 前

scatter slots characters https://freeonlneslotmachine.com/

trackback

pop slots free chips https://2-free-slots.com/

trackback
1 年 前

3complex

返回顶部
25
0
希望看到您的想法,请您发表评论x