Skip to content

Instantly share code, notes, and snippets.

@stnc
Forked from kharissulistiyo/admin-redirect.php
Created August 1, 2017 20:09
Show Gist options
  • Save stnc/88b4de0fb72bfa51b173baeb56222d36 to your computer and use it in GitHub Desktop.
Save stnc/88b4de0fb72bfa51b173baeb56222d36 to your computer and use it in GitHub Desktop.
Admin Page Redirection After WordPress Theme Activated
/**
* WordPress snippet
* Admin page redirection
* Put this inside theme setup function
*/
global $pagenow;
if ( is_admin() && 'themes.php' == $pagenow && isset( $_GET['activated'] ) ) {
wp_redirect(admin_url("themes.php?page=rundown-settings")); // Your admin page URL
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment