W3cubDocs

/WordPress

do_action( "in_plugin_update_message-{$file}", array $plugin_data, array $response )

Fires at the end of the update message container in each row of the plugins list table.

Description

The dynamic portion of the hook name, $file, refers to the path of the plugin’s primary file relative to the plugins directory.

Parameters

$plugin_data

(array) An array of plugin metadata.

  • 'name'
    (string) The human-readable name of the plugin.
  • 'plugin_uri'
    (string) Plugin URI.
  • 'version'
    (string) Plugin version.
  • 'description'
    (string) Plugin description.
  • 'author'
    (string) Plugin author.
  • 'author_uri'
    (string) Plugin author URI.
  • 'text_domain'
    (string) Plugin text domain.
  • 'domain_path'
    (string) Relative path to the plugin's .mo file(s).
  • 'network'
    (bool) Whether the plugin can only be activated network wide.
  • 'title'
    (string) The human-readable title of the plugin.
  • 'author_name'
    (string) Plugin author's name.
  • 'update'
    (bool) Whether there's an available update. Default null.

$response

(array) An array of metadata about the available plugin update.

  • 'id'
    (int) Plugin ID.
  • 'slug'
    (string) Plugin slug.
  • 'new_version'
    (string) New plugin version.
  • 'url'
    (string) Plugin URL.
  • 'package'
    (string) Plugin update package URL.

Source

File: wp-admin/includes/update.php

View on Trac

Changelog

Version Description
2.8.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/in_plugin_update_message-file