You appear to be a bot. Output may be restricted
Description
Return the correct link for the opted-in page for this user
Usage
$string = oiksp_build_redirect( $redirect, $atts );
Parameters
- $redirect
- ( ID ) required – the ID of the opted_in page to be shown
- $atts
- ( array ) required – name value pairs for the query args
Returns
string the URL for redirection or inclusion in an emailSource
File name: oik-squeeze/shortcodes/oik-squeeze.phpLines:
1 to 8 of 8
function oiksp_build_redirect( $redirect, $atts ) { $permalink = get_permalink( $redirect ); if ( $permalink ) { $permalink = add_query_arg( $atts, $permalink ); } bw_trace2( $permalink, "permalink" ); return( $permalink ); }