Skip to content

Instantly share code, notes, and snippets.

@BHEADRICK
Created December 13, 2013 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BHEADRICK/7949967 to your computer and use it in GitHub Desktop.
Save BHEADRICK/7949967 to your computer and use it in GitHub Desktop.
WordPress Plugin Settings Link
// Add settings link on plugin page
function your_plugin_settings_link($links) {
$settings_link = '<a href="options-general.php?page=your_plugin.php">Settings</a>';
array_unshift($links, $settings_link);
return $links;
}
$plugin = plugin_basename(__FILE__);
add_filter("plugin_action_links_$plugin", 'your_plugin_settings_link' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment