WordPress 模式使用瞭 wptexturize 函數將純文本字符轉換成格式化的 HTML 實體。標簽 <pre>, <code>, <kbd>, <style>, <script>和<tt>中的文本被忽略。
對於一般寫單純碼文字的人來說,這個自動將英文半角符號轉換成全角符號,是很方便、智能。但如果你經常要粘貼一些代碼,而且沒有使用專門的代碼高亮外掛,你會發現,你代碼中的半角符號都會被轉換成全角瞭!別人復制後,根本沒辦法直接使用!
那麼,如何才能禁止字符轉義呢?推薦大傢使用 Quotmarks Replacer 外掛,直接安裝即可,它的所有代碼如下,你也可以根據自己的需要,刷選自己要的代碼,添加到主題的 functions.php 文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$qmr_work_tags = array( 'the_title', // 標題 'the_content', // 內容 * 'the_excerpt', // 摘要 * 'single_post_title', // 單篇文章標題 'comment_author', // 迴響作者 'comment_text', // 迴響內容 * 'link_description', // 友鏈描述(已棄用,但還很常用) 'bloginfo', // 部落格信息 'wp_title', // 網站標題 'term_description', // 項目描述 'category_description', // 分類描述 'widget_title', // 小工具標題 'widget_text' // 小工具文本 ); foreach ( $qmr_work_tags as $qmr_work_tag ) { remove_filter ($qmr_work_tag, 'wptexturize'); } |
$qmr_work_tags = array(
‘the_title’, // 標題
‘the_content’, // 內容 *
‘the_excerpt’, // 摘要 *
‘single_post_title’, // 單篇文章標題
‘comment_author’, // 迴響作者
‘comment_text’, // 迴響內容 *
‘link_description’, // 友鏈描述(已棄用,但還很常用)
‘bloginfo’, // 部落格信息
‘wp_title’, // 網站標題
‘term_description’, // 項目描述
‘category_description’, // 分類描述
‘widget_title’, // 小工具標題
‘widget_text’ // 小工具文本
);
foreach ( $qmr_work_tags as $qmr_work_tag ) {
remove_filter ($qmr_work_tag, ‘wptexturize’);
}
當然,你還可以將上面的代碼分別下面的形式:
1 2 3 4 5 6 |
/取消內容轉義 remove_filter('the_content', 'wptexturize'); //取消摘要轉義 remove_filter('the_excerpt', 'wptexturize'); //取消迴響轉義 remove_filter('comment_text', 'wptexturize'); |
/取消內容轉義
remove_filter(‘the_content’, ‘wptexturize’);
//取消摘要轉義
remove_filter(‘the_excerpt’, ‘wptexturize’);
//取消迴響轉義
remove_filter(‘comment_text’, ‘wptexturize’);
如果不想修改代碼的,直接下載安裝 Quotmarks Replacer 外掛。