i am using dynamic featured image and adding multiple product images to a single custom post type name as products for a single product but and i am trying to get those imag
You need to get medium sized image by calling get_image_url
function. Try this:
get_featured_images();
foreach($featured_images as $featured_image) {
$mediumSizedImage = $dynamic_featured_image->get_image_url($featured_image['attachment_id'], 'medium');
echo "
";
?>
All available functions are documented here.
PS: I am author of the plugin.