manage_plugins_custom_column action-hook . WP 3.1.0
Fires inside each custom column of the Plugins list table.
Usage
add_action( 'manage_plugins_custom_column', 'action_function_name_736', 10, 3 ); function action_function_name_736( $column_name, $plugin_file, $plugin_data ){ // action... }
- $column_name(string)
- Name of the column.
- $plugin_file(string)
- Path to the plugin file relative to the plugins directory.
- $plugin_data(array)
- An array of plugin data.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
manage_plugins_custom_column
wp-admin/includes/class-wp-plugins-list-table.php 1185
do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );