HOME


Mini Shell 1.0
DIR: /var/www/2of3/wp-content/plugins/ocean-extra/includes/metabox/controls/multiple-select/
Upload File :
Current File : /var/www/2of3/wp-content/plugins/ocean-extra/includes/metabox/controls/multiple-select/template.php
<div class="oceanwp-mb-desc">
	<# if ( data.label ) { #>
		<span class="butterbean-label">{{ data.label }}</span>
	<# } #>

	<# if ( data.description ) { #>
		<span class="butterbean-description">{{{ data.description }}}</span>
	<# } #>
</div>

<div class="oceanwp-mb-field">
	<select class="widefat butterbean-multiple-select" multiple="multiple" name="{{ data.field_name }}[]" {{{ data.attr }}}>

		<# _.each( data.choices, function( label, choice ) { #>

			<option value="{{ choice }}" <# if ( ( -1 !== _.indexOf( data.value, choice ) ) ) { #> selected="selected" <# } #>>{{ label }}</option>

		<# } ) #>

	</select>
</div>