Skip to content

Instantly share code, notes, and snippets.

@creativecoder
Created April 27, 2013 22:36
Show Gist options
  • Save creativecoder/5475025 to your computer and use it in GitHub Desktop.
Save creativecoder/5475025 to your computer and use it in GitHub Desktop.
Redirect user to plugin settings page upon plugin activation, if only this plugin is being activated
// Redirect if not activating multiple plugins at once
if( ! isset( $_GET['activate-multi'] ) ) {
wp_redirect( admin_url( 'options-general.php?page=my-plugin-options' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment