mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Merge pull request #102 from grappler/patch-4
Replace plugin-name with plugin_slug & remove TODO
This commit is contained in:
commit
8881946c1d
1 changed files with 2 additions and 8 deletions
|
@ -67,14 +67,8 @@ class Plugin_Name_Admin {
|
||||||
// Add the options page and menu item.
|
// Add the options page and menu item.
|
||||||
add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
|
add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
|
||||||
|
|
||||||
/*
|
// Add an action link pointing to the options page.
|
||||||
* Add an action link pointing to the options page.
|
$plugin_basename = plugin_basename( plugin_dir_path( __FILE__ ) . $this->plugin_slug . '.php' );
|
||||||
*
|
|
||||||
* TODO:
|
|
||||||
*
|
|
||||||
* - Rename "plugin-name.php" to the name your plugin
|
|
||||||
*/
|
|
||||||
$plugin_basename = plugin_basename( plugin_dir_path( __FILE__ ) . 'plugin-name.php' );
|
|
||||||
add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'add_action_links' ) );
|
add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'add_action_links' ) );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue