我想在主题选项页面中添加媒体上载程序。如果我在选项页面中添加以下代码,媒体上传器在那里工作正常,但它会在标准帖子的特色图片中产生问题。它不允许我从那里选择任何图像。
是不是因为我用错误的方式添加了它?
if ( ! did_action( \'wp_enqueue_media\' ) ){
wp_enqueue_media();
}
下面是我正在使用的上传功能:
$(\'#upload_img\').click(function(){
wp.media.editor.send.attachment = function(props, attachment){
$(\'#theme_options\\\\[img_url\\\\]\').val(attachment.url);
}
wp.media.editor.open(this);
return false;
});