Created
May 7, 2013 21:07
-
-
Save mustafauysal/5536121 to your computer and use it in GitHub Desktop.
Use wordpress new media uploader in the plugin or theme.
@link: http://www.webmaster-source.com/2013/02/06/using-the-wordpress-3-5-media-uploader-in-your-plugin-or-theme/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment