manage_plugins_custom_column
Fires inside each custom column of the Plugins list table.
Description
do_action( 'manage_plugins_custom_column', (string) $column_name, (string) $plugin_file, (array) $plugin_data );
Parameters (3)
- 0. $column_name (string)
- Name of the column.
- 1. $plugin_file (string)
- Path to the plugin file.
- 2. $plugin_data (array)
- An array of plugin data.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );
- The following example is for adding a hook callback.
- // define the manage_plugins_custom_column callback
- function action_manage_plugins_custom_column( $column_name, $plugin_file, $plugin_data ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'manage_plugins_custom_column', 'action_manage_plugins_custom_column', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'manage_plugins_custom_column', 'action_manage_plugins_custom_column', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-plugins-list-table.php
- do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );