Minor hack to remove seconds delay
-
This is an edit I did that works really well, figured I’d share it here….
– Wolfe
https://www.danwolfe.meadd_shortcode('redirect', 'scr_do_redirect'); function scr_do_redirect($atts) { ob_start(); $myURL = (isset($atts['url']) && !empty($atts['url']))?esc_url($atts['url']):""; $mySEC = (isset($atts['sec']) && !empty($atts['sec']))?esc_attr($atts['sec']):"0"; if(!empty($myURL)) { ?> <meta http-equiv="refresh" content="<?php echo $mySEC; ?>; url=<?php echo $myURL; ?>"> <?php wp_redirect($myURL, 301,'Redirected by ' ) ; } return ob_get_clean(); } ?>
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Minor hack to remove seconds delay’ is closed to new replies.