项目作者: waleedt93

项目描述 :
Redirect After Theme Activation
高级语言:
项目地址: git://github.com/waleedt93/Redirect-After-Theme-Activation.git


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

Add below code to your functions.php

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

Note

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