在自定义媒体框架中添加附件显示设置

时间:2014-05-27 04:57:37

标签: php wordpress

我制作了自己的自定义媒体框架:

$('.add').bind('click', function(event) {
    event.preventDefault();
    // Create the media frame.
    file_frame = wp.media.frames.file_frame = wp.media({
        title: 'Select image to insert',
        button: {
            text: 'Insert',
        },
        multiple: true 
    });
    file_frame.open();
});

它打开了媒体管理器,但是缺少了Attachement显示设置部分。我怎么能得到它?

1 个答案:

答案 0 :(得分:0)

在标题下,您需要添加框架:' post'在回调中,你应该有frame.on('插入')而不是frame.on(' select')