Conversation
supportThis is an edit I did that works really well, figured I’d share it here…. – Wolfe http://www.danwolfe.me add_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(); } ?> This topic was modified 6 years, 7 months ago by danwolfe . Reason: typo The page I need help with: [ log in to see the link]
This may cause “headers already sent” errors if output has already started for the page.
Where did you make the edit? Sorry, I know enough code to do what I need to do and research the rest. Thanks for your help.
Never mind. I see you replaced the text on the plugins php file. It worked. Nice.
This may cause “headers already sent” errors if output has already started for the page.
Where did you make the edit? Sorry, I know enough code to do what I need to do and research the rest. Thanks for your help.
Never mind. I see you replaced the text on the plugins php file. It worked. Nice.