Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created December 27, 2013 18:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikejolley/c9e66bc098fb3cabda2d to your computer and use it in GitHub Desktop.
Save mikejolley/c9e66bc098fb3cabda2d to your computer and use it in GitHub Desktop.
Add some plugin action links
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'your_plugin_action_links' );
function your_plugin_action_links( $links ) {
return array_merge( array(
'<a href="' . admin_url( 'admin.php?page=your-plugin' ) . '">' . __( 'Settings'' ) . '</a>',
'<a href="#someotherlink">' . __( 'Link' ) . '</a>'
), $links );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment