分享一款WordPress代码高亮插件:WP-Syntax

在发布文章中难免不会遇到需要插入代码的时候,如果你恰好又是作为一个程序员,那么就更需要这款WP-Syntax插件了,在后台搜索名称即可安装。
WP-Syntax的使用:

<pre lang=”html” line=”1″ escaped=”true”>
//这里添加需要插入的代码……
</pre>

在发布文章的时候需要切换到文本模式,然后在需要添加代码的地方添加如下代码:

其中lang=”html”是代码语言(这里是html,可根据插入的语言修改如php),line=”1″是指是否显示行号,设置为1为显示0则不显示,escaped=”true”是代码是为了防止代码被转义,设置为false则被转义。

效果演示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Service Labs</title>
 </head>
 <body>
  hello,world!
 </body>
</html>