将自定义 TiniMCE 按钮添加到第二行?
有谁知道如何将 Wordpress 上的自定义 TinyMCE 按钮添加到第二行而不是第一行?
问题是我有超过 10 个,而且它们一直向右分组,阻碍了 Wordpress 编辑器。
我的解决方案是将一些内容放在下面,但我找不到任何指向该场景的文档。
我用来成功地将按钮添加到第一行的代码是以下(部分)内容
ed.addButton('example', {
title : 'example.desc',
image : '../jscripts/tiny_mce/plugins/example/img/example.gif',
onclick : function() {
ed.windowManager.alert('Hello world!! Selection: ' + ed.selection.getContent({format : 'text'}));
}
任何正确方向的评论都将受到深深的赞赏。
谢谢!
Does anyone know how can I add my custom TinyMCE buttons on Wordpress to the second line instead of the first one?
The problem is that I got more than 10, and they keep grouping to the right braking the Wordpress editor.
My solution would be to put some below, but I can't find any documentation pointing to that scenario.
The code I am using to add buttons to the first line with success is (part) of the following
ed.addButton('example', {
title : 'example.desc',
image : '../jscripts/tiny_mce/plugins/example/img/example.gif',
onclick : function() {
ed.windowManager.alert('Hello world!! Selection: ' + ed.selection.getContent({format : 'text'}));
}
Any comment in the right direction will be deeply appreciated.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不使用钩子:
使用:
文档:
http://codex.wordpress.org/Plugin_API/Filter_Reference/mce_buttons,_mce_buttons_2,_mce_buttons_3,_mce_buttons_4
Instead of using the hook:
Use:
Documentation:
http://codex.wordpress.org/Plugin_API/Filter_Reference/mce_buttons,_mce_buttons_2,_mce_buttons_3,_mce_buttons_4