manage_plugins_custom_column WordPress Action Hook

The manage_plugins_custom_column hook allows you to add custom columns to the plugins list table. This hook is triggered when the columns are being rendered.

do_action( 'manage_plugins_custom_column', string $column_name, string $plugin_file, array $plugin_data ) #

Fires inside each custom column of the Plugins list table.


Parameters

$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. See get_plugin_data() and the 'plugin_row_meta' filter for the list of possible values.


Top ↑

Source

File: wp-admin/includes/class-wp-plugins-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
3.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.