在 WordPress 中的 Tinymce 中为短代码创建自定义下拉框
有谁知道如何在tinymce中为Wordpress创建自定义下拉框? 我需要它至少与 WordPress 3.0 一起使用。
我在互联网上搜索了这方面的教程,但找不到。网站教程的链接会很棒。
提前致谢。
Does anyone know how to create a custom dropdown box in tinymce for Wordpress?
I need it to work with at least wordpress 3.0.
I have searched the internet for a tutorial on this and I cannot find one. A link to a website tutorial would be great.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道这个问题已经被问过一段时间了,但是当我偶然发现同样的问题时,我认为无论如何我都会回答这个问题。也许它对其他人有帮助。
DropDown-Control 源中的注释<事实证明,tinyMCE 中的 /a> 确实很有帮助。
您只需要先使用
createDropMenu()
创建一个下拉菜单,然后就可以调用add()
方法向下拉菜单添加项目。I know this question was already asked some time ago, but as I stumbled across the same problem, I tought I'd answer this question anyways. Maybe it helps someone else.
The comments in the source of the DropDown-Control in tinyMCE turned out to be really helpful.
You just need to create a dropdown first, using
createDropMenu()
, then you can call theadd()
method to add items to the dropdown.这会添加一个按钮,因此您只需调整它以创建一个下拉框,
然后您需要将其添加到 js 文件中
this adds a button so you just need to tweak it to make a drop down box
you will then need to add the to the js file