Skip to content

Instantly share code, notes, and snippets.

@sutandang
Created July 10, 2016 01:13
Show Gist options
  • Save sutandang/b323f6dbd1f38113d20a3ae54aa44229 to your computer and use it in GitHub Desktop.
Save sutandang/b323f6dbd1f38113d20a3ae54aa44229 to your computer and use it in GitHub Desktop.
/*************************
* Enqueue Media Uploader
*************************/
function enqueue_admin_scripts() {
if(function_exists('wp_enqueue_media')) {
wp_enqueue_media();
}
else {
wp_enqueue_script('media-upload');
wp_enqueue_script('thickbox');
wp_enqueue_style('thickbox');
}
}
/**********************
* Input Media Upload
***********************/
<a href="#" class="custom_media_upload">Upload</a>
<img class="custom_media_image" src="" />
<input class="custom_media_url" type="text" name="attachment_url" value="">
<input class="custom_media_id" type="text" name="attachment_id" value="">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment