wp_is_auto_update_forced_for_item( string $type, bool|null $update, object $item )
Checks whether auto-updates are forced for an item.
Parameters
- $type
-
(Required) The type of update being checked: 'theme' or 'plugin'.
- $update
-
(Required) Whether to update. The value of null is internally used to detect whether nothing has hooked into this filter.
- $item
-
(Required) The update offer.
Return
(bool) True if auto-updates are forced for $item
, false otherwise.
Source
File: wp-admin/includes/update.php
function wp_is_auto_update_forced_for_item( $type, $update, $item ) {
/** This filter is documented in wp-admin/includes/class-wp-automatic-updater.php */
return apply_filters( "auto_update_{$type}", $update, $item );
}
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |