Redirect After Theme Activation

If you have special instructions in your theme (eg. in your theme options page) that you’d like the user to see when they first activate the theme, you can use the following function to redirect them there:

if (is_admin() && isset($_GET['activated']) && $pagenow == "themes.php")
  wp_redirect('themes.php?page=themeoptions');

Pay special attention to the wp_redirect() function. Make sure to replace the themes.php?page=themeoptions with the URL of your page.

Where possible, stick to the main roads i.e. follow the native/established WordPress way of doing things.

This site uses cookies to offer you a better browsing experience. By browsing this website, you agree to our use of cookies.