Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
mountainpassions
/
blog
/
wp-content
/
plugins
/
adrotate
/
library
📤 Upload
📝 New File
📁 New Folder
Close
Editing: uploader-hook.js
/* use the Media Uploader from WordPress Version: 1.0 Original code: Arnan de Gans Copyright: (c) 2020 Arnan de Gans */ jQuery(document).ready(function(){ var custom_uploader; jQuery('#adrotate_image_button').click(function(e) { e.preventDefault(); if(custom_uploader) { custom_uploader.open(); return; } custom_uploader = wp.media.frames.file_frame = wp.media({title: 'Choose Banner',button: {text: 'Choose Banner'},multiple: false}); custom_uploader.on('select', function() { attachment = custom_uploader.state().get('selection').first().toJSON(); jQuery('#adrotate_image').val(attachment.url); }); custom_uploader.open(); }); });
Save
Cancel