Hi,
If I want to put a select input in a meta-box on the edit page of my child theme, how can I add it to the array? I see that the code will process the input type select, but I can't seem to be able to format the string correctly.
For example,
$arr = array(something);
Where does it go in
$transform = array(
'something' => array( 'name' => 'Something', 'title' => __('Something:', 'transformation'), 'type' => 'select' ), );
}