Meta Box
Support Forum
Support › General › plupload_image as URL instead of ID
Is there anyway to get metabox to output the full url of an image rather than ID?
Yes, of course. You can use the following code to output the full URL of an image:
$image = rwmb_meta( 'field_id', 'type=image' ); echo $image['full_url'];
For more information, please read this documentation.