Please fill out all Fields
Close
The Title can only include alphabets, numbers or hyphens
Close
A Snippet with this Title already exists
Close
query($wpdb->prepare( 'SELECT * FROM '. $wpdb->prefix .'anyguide_short_code WHERE title = %s', $anyguide_title)) ;
if ($snippet_count == 0) {
$anyguide_shortCode = '[anyguide snippet="'.$anyguide_title.'"]';
$wpdb->insert(
$wpdb->prefix.'anyguide_short_code', array(
'title' => $anyguide_title,
'type' => $anyguide_type,
'slug' => $anyguide_slug,
'token' => $anyguide_token,
'short_code' => $anyguide_shortCode,
'status' => '1'
), array('%s', '%s', '%s', '%s', '%s', '%d'));
header("Location:" . admin_url('admin.php?page=anyguide-manage&any_msg=1'));
} else {
anyguide_existing_snippet_notice();
}
} else {
anyguide_invalid_snippet_notice();
}
} else {
anyguide_mandatory_fields_notice();
}
}
?>