Se utiliza
Código Javascript
:
Ver original$('.add_img').click(function(){
var input_img = $(this).next();
var frame = wp.media({
title : 'Seleccionar imagen',
multiple : false,
library : { type : 'image'},
button : { text : 'Insert' }
});
frame.on('select',function() {
attachment = frame.state().get('selection').first().toJSON();
input_img.val(attachment['url']);
});
frame.open();
});
Si no te funciona haz que carge esto en la pagina donde vas a ejecutarlo