You appear to be a bot. Output may be restricted
Description
Redirect to the opted-in page passing the required values
I believe this is now a pointless function
Usage
oiksp_redirect( $atts );
Parameters
- $atts
- ( mixed ) required –
Returns
void
Source
File name: oik-squeeze/shortcodes/oik-squeeze.php
Lines:
1 to 13 of 13
function oiksp_redirect( $atts ) { $redirect = bw_array_get( $atts, "oiksp_id", false ); $id = bw_global_post_id(); if ( $redirect != $id ) { gobang(); $permalink = oiksp_build_redirect( $redirect, $atts ); if ( $permalink ) { wp_redirect( $permalink, 302 ); exit(); } } }