Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 Wordpress 开发一个插件,我需要在其中创建一个带有图像的画廊。
在 JavaScript 中,我调用媒体编辑器来创建画廊,使用以下代码:wp.media.editor.open(btn)。
编辑器会打开默认的“插入媒体”选项卡。我希望它从“创建图库”选项卡中打开。你能告诉我,怎么做吗?
I think what you are looking for is something like this.
var gallerysc = "[gallery ids='123,12,10']"; wp.media .gallery .edit(gallerysc) .on('update', function(g, x) { console.log(g.models); });