$value ) {
if(stristr($name, 'wpl_') && $value != '') {
if ( in_array( $name, $old_settings ) ) {
if ( $name === 'wpl_ga_code') {
$ua_regex = "/UA-[0-9]{5,}-[0-9]{1,}/";
preg_match_all($ua_regex, $value, $ua_id);
$my_options[$name] = $ua_id[0][0];
} else {
$my_options[$name] = $value;
}
}
}
}
echo "";
print_r($my_options);
echo "
";
?>