File: /var/www/html/wpbiancoarte/wp-content/plugins/hiroshi-core/inc/header/helper.php
<?php
if ( ! function_exists( 'hiroshi_core_header_radio_to_select_options' ) ) {
/**
* Function that convert radio boxes into array
*
* @param array $radio_array
*
* @return array
*/
function hiroshi_core_header_radio_to_select_options( $radio_array ) {
$select_array = array( '' => esc_html__( 'Default', 'hiroshi-core' ) );
foreach ( $radio_array as $key => $value ) {
$select_array[ $key ] = $value['label'];
}
return $select_array;
}
}