我在插件中使用自定义media upload
。在我以前的(before 4.0) WordPress
版本中,它的工作非常完美。当我上传音频或图像文件时,上传成功
当我点击"Insert Into Post"
文本字段中显示的上传文件的路径时。
但是,当我升级WordPress into 4.4.2
并上传任何文件时,其上传成功
当我点击"插入帖子"上传文件的文件路径未显示在我的文本字段中。
在两个WordPress中,代码都是100%相同。
这是我的HTML代码:
<input type="text" size="50" name="mp3" id="mp3" class="upload-url" />
<input id="st_upload_button" class="st_upload_button" type="button" name="upload_button" value="Upload">
这是我的Functions.php代码:
function pro_scripts_method() {
wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');
wp_register_script( 'custom-js', plugin_dir_url( __FILE__ )."js/custom.js");
wp_enqueue_script( 'custom-js' );
}
add_action('admin_enqueue_scripts', 'pro_scripts_method');
这是我的JS代码:
jQuery('.st_upload_button').click(function() {
targetfield = jQuery(this).prev('.upload-url');
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
return false;
});
window.send_to_editor = function(html) {
fileurl = jQuery(html).attr('href');
//alert(fileurl);
jQuery(targetfield).val(fileurl);
tb_remove();
}
我警告fileurl
变量,但它给了我未定义的值。所以请帮我修复那个问题
答案 0 :(得分:3)
为什么你没有使用wp.media
?
试试这个:
jQuery(document).ready(function($) {
"use strict";
$('.st_upload_button').on('click', function(e){
e.preventDefault();
var $input_field = $(this).prev();
var custom_uploader = wp.media.frames.file_frame = wp.media({
title: 'Add Audio',
button: {
text: 'Add Audio'
},
multiple: false
});
custom_uploader.on('select', function() {
var attachment = custom_uploader.state().get('selection').first().toJSON();
$input_field.val(attachment.url);
});
custom_uploader.open();
});
});
这将在按钮单击时打开媒体屏幕,并将URL放入输入字段。
答案 1 :(得分:3)
新WordPress对其媒体上传所做的更改是空的链接网址字段。
但是,如果您点击该字段下方的file url
按钮,然后点击Insert Into Post
您的代码效果很好:)
因此,我们需要一种简单的方法来自动将file url
值放在链接网址中。我不知道是否在wordpress中有一个设置,但是我在 jQuery 中编写了一个简单的代码来实现它,它对我来说非常好。
我真正在做的是:
当用户点击Insert into Post
按钮时。我的 jQuery 检查该Insert into Post
按钮的父级,找到file url
值并将其插入链接网址字段。而已!简单吧?
jQuery('.savesend input[type=submit]').click(function(){
var url = jQuery(this).parents('.describe').find('.urlfile').data('link-url');
var field = jQuery(this).parents('.describe').find('.urlfield');
field.val(url);
});
所以试一试,让我知道:)。
答案 2 :(得分:1)
自Wordpress 3.5以来,它们是wordpress uploader的新版本。也许你在Wordpress 4.0中没有这样做的方式
您可以在此处找到基本教程: http://www.webmaster-source.com/
jQuery(document).ready(function($){
var custom_uploader;
$('#upload_image_button').click(function(e) {
e.preventDefault();
//If the uploader object has already been created, reopen the dialog
if (custom_uploader) {
custom_uploader.open();
return;
}
//Extend the wp.media object
custom_uploader = wp.media.frames.file_frame = wp.media({
title: 'Choose Image',
button: {
text: 'Choose Image'
},
multiple: false
});
//When a file is selected, grab the URL and set it as the text field's value
custom_uploader.on('select', function() {
attachment = custom_uploader.state().get('selection').first().toJSON();
$('#upload_image').val(attachment.url);
});
//Open the uploader dialog
custom_uploader.open();
});
});
<label for="upload_image">
<input id="upload_image" type="text" size="36" name="ad_image" value="http://" />
<input id="upload_image_button" class="button" type="button" value="Upload Image" />
<br />Enter a URL or upload an image
</label>
//This part Should be in function.php (or similar)
add_action('admin_enqueue_scripts', 'my_admin_scripts');
function my_admin_scripts() {
if (isset($_GET['page']) && $_GET['page'] == 'my_plugin_page') {
wp_enqueue_media();
wp_register_script('my-admin-js', WP_PLUGIN_URL.'/my-plugin/my-admin.js', array('jquery'));
wp_enqueue_script('my-admin-js');
}
}