我看过无数文章,关于如何在没有侧边栏的情况下启动WP3.5媒体上传器的自定义版本但是在我的生活中找不到任何实际告诉你如何使用侧边栏启动它的内容。
我已经修改了很多东西,允许用户在使用“从URL插入”选项时进行侧载并希望在我的应用程序的其他区域启用“从URL插入”选项。
理想情况下,在图像模式下查看上传器时,我希望这是第三个选项,因此您可以“上传文件” '媒体库'| “从网址插入”但未通过我只是喜欢旁边栏显示...
我目前正在使用此
ImageChooser = wp.media.frames.icsImageChooser = wp.media({
// Set the title of the modal.
title: 'Choose or Upload Image',
// Tell the modal to show only images.
library: {
type: 'image'
},
// Customize the submit button.
button: {
// Set the text of the button.
text: 'Use This'
}
});
是否有人知道我需要添加什么来实现上述任何一种理想的结果?