need personal view of the cloned field data, however it just returns me the word array, and debug returns me the current error () expects parameter 1 to be array, null given in
I have the following code
Page configuration field
array (
'Id' => $PrefixField. "Company_contact"
'Name' => __ ( 'phones', 'your-prefix'),
'Type' => 'text'
'Clone' => true,
'Max_clone' => 5,
)
To view have tried unsuccessfully
$Settings = get_Option ('ims_settings');
$FIELD_ID = 'ims_settings_default_mf_company_contact';
if (isset ($settings[$FIELD_ID]))
{
echo $settings[$FIELD_ID];
}
Can anyone help me with an example of how to do?