我制作了自己的自定义媒体框:
$(\'.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();
});
它可以打开media manager,但缺少附件显示设置部分。我怎样才能得到它?