Skip to content

Instantly share code, notes, and snippets.

@mathetos
Last active August 29, 2015 14:11
Show Gist options
  • Save mathetos/805288bbcd03a32ca92a to your computer and use it in GitHub Desktop.
Save mathetos/805288bbcd03a32ca92a to your computer and use it in GitHub Desktop.
Plugin Redirect on Activation
function detect_plugin_activation( $plugin ) {
if( $plugin == 'path-to-my-plugin') {
wp_redirect("options-general.php?page=my-plugin-settings-page");
exit;
} else {}
}
add_action( 'activated_plugin', 'detect_plugin_activation', 10, 2 );
@espellcaste
Copy link

You are using "=" when it should be "=="... Try changing that!

@mathetos
Copy link
Author

That was it! D'oh! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment