?AlkantarClanX12
| Current Path : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/header/ |
| Current File : /home/rankinh/villavanille/wp-content/plugins/drew-core/inc/header/helper.php |
<?php
if ( ! function_exists( 'drew_core_header_radio_to_select_options' ) ) {
/**
* Function that convert radio boxes into array
*
* @param array $radio_array
*
* @return array
*/
function drew_core_header_radio_to_select_options( $radio_array ) {
$select_array = array( '' => esc_html__( 'Default', 'drew-core' ) );
foreach ( $radio_array as $key => $value ) {
$select_array[ $key ] = $value['label'];
}
return $select_array;
}
}