plugin_install_description WordPress Filter Hook
This hook is used to add content to the plugin installation page. It is used to display additional information about the plugin, such as the author, version, etc.
apply_filters( 'plugin_install_description', string $description , array $plugin ) #
Filters the plugin card description on the Add Plugins screen.
Parameters
- $description
(string)Plugin card description.
- $plugin
(array)An array of plugin data. See plugins_api() for the list of possible values.
Source
File: wp-admin/includes/class-wp-plugin-install-list-table.php
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |