incompatible_sql_modes
Filters the list of incompatible SQL modes to exclude.
Description
Parameters (1)
- 0. $this_incompatible_modes (array)
- An array of incompatible modes.
Usage
- To run the hook, copy the example below.
- $this_incompatible_modes = apply_filters( 'incompatible_sql_modes', $this_incompatible_modes );
- if ( !empty( $this_incompatible_modes ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the incompatible_sql_modes callback
- function filter_incompatible_sql_modes( $this_incompatible_modes ) {
- // make filter magic happen here...
- return $this_incompatible_modes;
- };
- // add the filter
- add_filter( 'incompatible_sql_modes', 'filter_incompatible_sql_modes', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'incompatible_sql_modes', 'filter_incompatible_sql_modes', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/wp-db.php
- $incompatible_modes = (array) apply_filters( 'incompatible_sql_modes', $this->incompatible_modes );