if ($_POST) {
if (!isset($_REQUEST['_wpnonce']) || !wp_verify_nonce($_REQUEST['_wpnonce'], 'sytvg_options_')) {
wp_nonce_ays('');
exit;
} else {
$_POST = stripslashes_deep($_POST);
$col = intval('sytvg_options_column_number');
if ($col >= 1 && $col <= 6) {
update_option('sytvg_options_column_number', $col);
}
}
}