You appear to be a bot. Output may be restricted
Description
Implement "wp_ajax_oiksp_form" action to display the squeeze page opt-in form
Usage
oiksp_ajax_oiksp_form();
Parameters
Returns
voidSource
File name: oik-squeeze/oik-squeeze.phpLines:
1 to 13 of 13
function oiksp_ajax_oiksp_form() { oik_require( "shortcodes/oik-squeeze.php", "oik-squeeze" ); $id = bw_array_get( $_REQUEST, "oiksp_id", null ); $from = bw_array_get( $_REQUEST, "oiksp_from", null ); $atts = array( "id" => $id , "oiksp_id" => $id , "oiksp_from" => $from ); $result = bw_squeeze( $atts ); e( $result ); bw_flush(); exit(); }