将自定义 TiniMCE 按钮添加到第二行?

发布于 2024-12-03 13:36:57 字数 515 浏览 1 评论 0原文

有谁知道如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海未深 2024-12-10 13:36:57

不使用钩子:

add_filter( 'mce_buttons', 'add_my_tinymce_buttons' );

使用:

add_filter( 'mce_buttons_2', 'add_my_tinymce_buttons' );

文档:
http://codex.wordpress.org/Plugin_API/Filter_Reference/mce_buttons,_mce_buttons_2,_mce_buttons_3,_mce_buttons_4

Instead of using the hook:

add_filter( 'mce_buttons', 'add_my_tinymce_buttons' );

Use:

add_filter( 'mce_buttons_2', 'add_my_tinymce_buttons' );

Documentation:
http://codex.wordpress.org/Plugin_API/Filter_Reference/mce_buttons,_mce_buttons_2,_mce_buttons_3,_mce_buttons_4

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文