纯css高亮代码wordpress
点击数: 2057
文章目录
第一先谈,如果你要使用代码教学,让人复制。
但是在wordpress的系统中,
常会把半角变成全角,导致代码错误。
那必须在主题functions.php中加入此代码
- /取消内容转义
- remove_filter('the_content', 'wptexturize');
- //取消摘要转义
- remove_filter('the_excerpt', 'wptexturize');
- //取消评论转义
- remove_filter('comment_text', 'wptexturize');
第二,我们使用高亮代码教学,纯CSS实现,不用外挂
先下载coderender
下载完后,解压缩后
会有四个档案
1.先在主题,或在正确的地方
加入css的代码,或放在主题的.css里面
- "stylesheet" type="text/css" href="http://www.onetruth.com.tw/code/highlight.css">