all_plugins WordPress Filter Hook
The all_plugins hook is one of the most important hooks in WordPress. It is called during the loading of each plugin file. This hook allows you to modify how a plugin is loaded. If a plugin is not compatible with the current version of WordPress, this hook can be used to deactivate the plugin. Additionally, this hook can be used to load a plugin's text domain for internationalization.
apply_filters( 'all_plugins', array $all_plugins ) #
Filters the full array of plugins to list in the Plugins list table.
Description
See also
Parameters
- $all_plugins
(array)An array of plugins to display in the list table.
Source
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |