wp-codebox添加后台按钮

修改步骤:

1、在插入代码前,将wordpress 编辑器切换为“HTML编辑”模式;
2、因为在 Pre 标签里再贴 Pre 标签就会出问题,所以请将本站实例代码中的 xpre 替换为 pre;
3、 Lang=”" 这里可以修改为你喜欢的语言,当然先留空到时候再填也可以;
4、修改 wp-includes/js/quicktags.js 这个文件;

先找到这句代码

edButtons[edButtons.length]=new edButton("ed_code","code","","","c");

然后再上面代码后面添加下面代码

edButtons[edButtons.length]=
new edButton("ed_pre_php","pre_php","n","n","p",-1);
edButtons[edButtons.length]=
new edButton("ed_pre_css","pre_css","n","n","pp",-1);
edButtons[edButtons.length]=
new edButton("ed_pre_js","pre_js","n","n","ppp",-1);

再找到这句代码

j.Buttons[j.Buttons.length]=new edButton(a+"_code","code","","","c");

再在上面代码下面添加以下代码

[j.Buttons.length] =
new edButton("ed_pre_php", "pre_php", "n", "n", "p", -1);
j.Buttons[j.Buttons.length] =
new edButton("ed_pre_css", "pre_css", "n", "n", "pp", -1);
j.Buttons[j.Buttons.length] =
new edButton("ed_pre_js", "pre_js", "n", "n", "ppp", -1);

修改好了,看下后台编辑吧!

好了,看下后台吧:wp-codebox添加后台按钮