manage_plugins_custom_column

动作钩子
do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data )
参数
  • (string) $column_name Name of the column.
    Required:
  • (string) $plugin_file Path to the plugin file relative to the plugins directory.
    Required:
  • (array) $plugin_data An array of plugin data. See get_plugin_data() and the {@see 'plugin_row_meta'} filter for the list of possible values.
    Required:
定义位置
相关勾子
manage_link_custom_columnmanage_pages_custom_columnmanage_posts_custom_columnmanage_users_custom_columnmanage_sites_custom_column
相关方法
get_post_custom_values_get_plugin_from_callbackget_post_customget_post_custom_keys_wp_customize_includewp_plugin_directory_constants
引入
3.1.0
弃用
-

manage_plugins_custom_column 是WordPress的一个动作钩子,用于在WordPress管理中的”插件”屏幕的列表视图中添加自定义列: 当一个自定义列被显示时,这个钩子将被调用,并且可以定义该列的内容。这个钩子允许开发者在”插件”屏幕上添加对网站管理员有用的额外信息。例如,一个插件的最后更新日期,插件的版本号,或其他相关信息。

在插件列表表的每个自定义列中触发。

do_action( 'manage_plugins_custom_column', $column_name, $plugin_file, $plugin_data );

常见问题

FAQs
查看更多 >