wp_redirect issue
-
I don’t seem to be able to get wp_redirect to work as I expected. I would like to create a shortcode to automatically redirect users to a different page when they open certain pages or posts. I have created a child theme, and added the following to the functions.php file.
function my_redirect_function() {
wp_redirect( home_url() );
}
add_shortcode(‘Go-Home’, ‘my_redirect_function’);However when I enter that shortcode on the page that I want to be redirected, nothing happens.
What am I missing?
Thanks
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘wp_redirect issue’ is closed to new replies.