Skip to content

Instantly share code, notes, and snippets.

@mauryaratan
Last active December 10, 2015 16:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mauryaratan/4461148 to your computer and use it in GitHub Desktop.
A slightly improved version of WP3.5 Media Uploader than previous version, just to stay safe. Don't forget to use wp_enqueue_media(); to avoid any error.
// Uploading files
var file_frame;
jQuery('.upload_image_button').live('click', function( event ){
event.preventDefault();
// If the media frame already exists, reopen it.
if ( file_frame ) {
file_frame.open();
return;
}
// Create the media frame.
file_frame = wp.media.frames.file_frame = wp.media({
title: jQuery( this ).data( 'uploader_title' ),
button: {
text: jQuery( this ).data( 'uploader_button_text' ),
},
multiple: false // Set to true to allow multiple files to be selected
});
// When an image is selected, run a callback.
file_frame.on( 'select', function() {
// We set multiple to false so only get one image from the uploader
attachment = file_frame.state().get('selection').first().toJSON();
// Do something with attachment.id and/or attachment.url here or do console.log(attachment) to get the list
});
// Finally, open the modal
file_frame.open();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment