pre_current_active_plugins
Fires before the plugins list table is rendered.
Description
This hook also fires before the plugins list table is rendered in the Network Admin.
Please note: The active portion of the hook name does not refer to whether the current view is for active plugins, but rather all plugins actively-installed.
Parameters (1)
- 0. $plugins_all (array)
- An array containing all installed plugins.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'pre_current_active_plugins', $plugins_all );
- The following example is for adding a hook callback.
- // define the pre_current_active_plugins callback
- function action_pre_current_active_plugins( $plugins_all ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'pre_current_active_plugins', 'action_pre_current_active_plugins', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'pre_current_active_plugins', 'action_pre_current_active_plugins', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/plugins.php
- do_action( 'pre_current_active_plugins', $plugins['all'] );