Changeset 48566 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 07/22/2020 06:50:30 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r48426 r48566 4087 4087 * 4088 4088 * @since 2.7.0 4089 * @deprecated 5.5.0 Use remove_ option_allowed_list() instead.4089 * @deprecated 5.5.0 Use remove_allowed_options() instead. 4090 4090 * Please consider writing more inclusive code. 4091 4091 * … … 4097 4097 */ 4098 4098 function remove_option_whitelist( $del_options, $options = '' ) { 4099 _deprecated_function( __FUNCTION__, '5.5.0', 'remove_ option_allowed_list()' );4100 4101 return remove_ option_allowed_list( $del_options, $options );4102 } 4099 _deprecated_function( __FUNCTION__, '5.5.0', 'remove_allowed_options()' ); 4100 4101 return remove_allowed_options( $del_options, $options ); 4102 }
Note: See TracChangeset
for help on using the changeset viewer.