WordPress的HTML编辑界面中添加wp-syntax按钮
wp-syntax是一个在WordPress文章中显示高亮代码的插件,但目前其安装后没有设置界面,使用时还要手动添加syntax专用代码,很是麻烦。所以在使用该插件是最好是修改WordPress的底层文件来添加个wp-syntax按钮。方法:
修改/wp-includes/js/quicktags.js文件。
找到
edButtons[edButtons.length]=new edButton("ed_code","code","<code>","</code>","c");
在其后添加
edButtons[edButtons.length]=new edButton("ed_syntax","syntax","<pre lang='php' line='1'>","</pre>","c");
保存后,在HTML编辑界面就会多出个syntax按钮了。
最新评论