You appear to be a bot. Output may be restricted
Description
Create the oik_contact record for the first contact
Usage
oiksp_create_contact( $name, $email, $atts );
Parameters
- $name
- ( mixed ) required –
- ( mixed ) required –
- $atts
- ( mixed ) required –
Returns
void
Source
File name: oik-squeeze/shortcodes/oik-squeeze.php
Lines:
1 to 16 of 16
function oiksp_create_contact( $name, $email, &$atts ) { if ( $atts['double'] ) { $confirm = oiksp_generate_confirm(); } else { $confirm = null; } $post_id = oiksp_create_oik_contact( $name, $email, $confirm, $atts ); if ( $post_id && $confirm ) { oiksp_send_optin_email( $name, $email, $confirm, $atts['oiksp_id'] ); $atts['confirm_key_required'] = true; $atts['oiksp_confirm'] = ""; } bw_trace2(); return( $post_id ); }