我在新的WordPress 3.5中使用Media Uploader没什么问题。我创建了自己的插件来上传图片。我正在使用此代码JS:
<script type="text/javascript">
var file_frame;
jQuery('.button-secondary').live('click', function( event ){
event.preventDefault();
if ( file_frame ) {
file_frame.open();
return;
}
file_frame = wp.media.frames.file_frame = wp.media(
{
title: 'Select File',
button: {
text: jQuery( this ).data( 'uploader_button_text' )
},
multiple: false
}
);
file_frame.on('select', function() {
attachment = file_frame.state().get('selection').first().toJSON();
jQuery('#IMGsrc').val(attachment.url);
});
file_frame.open();
});
</script>
该代码可以正常工作,但不幸的是表格看起来不完整。当我选择任何图片时,右侧都不会显示“附件显示设置”。我不知道为什么 我尝试向媒体添加选项:
displaySettings: true,
displayUserSettings: true
但这也不起作用。
wp_enqueue_media();
吗?