File "field-photo-sizes.php"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/includes/field-photo-sizes.php
File size: 347 bytes
MIME-type: --
Charset: utf-8

<select name="<?php echo $name; ?>">
	<?php 
	
	foreach(FLBuilderPhoto::sizes() as $size => $atts) :
			
			$label = ucwords(str_replace(array('_', '-'), ' ', $size)) . ' (' . implode('x', $atts) . ')';
					
	?>
	<option value="<?php echo $size; ?>" <?php selected($value, $size); ?>><?php echo $label; ?></option>
	<?php endforeach; ?>
</select>