0

Trying to redirect people going to one of my Thank You pages after visiting it for 3 seconds. Thought I could do the following in a page template designed just for this specific page:

get_header( "refresh:3;url=some-url-goes-here");

but it's not redirecting. What will make it work? Something in functions.php or .htaccess instead?

Adam Bell
  • 1,049
  • 1
  • 16
  • 50

1 Answers1

0

get_header has a completely different purpose. Try using standard php header method: https://www.php.net/manual/en/function.header.php

Vivek Athalye
  • 2,974
  • 2
  • 23
  • 32