Issue on Running Image upload on WP Metabox Custom Image Loader
I had the same error because I forgot to add: wp_enqueue_media(); Then I found this how to and solved the problem like this: 1: You have to enqueue WP JavaScript library for media and your own JS file: public function enqueue_scripts() { //WP library wp_enqueue_media(); //Your JS file wp_register_script(‘name-of-your-script’, plugin_dir_url( __FILE__ ) . ‘js/path-to-your.js’, array( … Read more