customize_sanitize_<id>
The WordPress Core customize sanitize id hook.
Description
Parameters (3)
- 0. $array (array) =>
array( __CLASS__, 'sanitize_css_callback' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- $array = apply_filters( 'customize_sanitize_{$id}', $array, $int, $int );
- if ( !empty( $array ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the customize_sanitize_<id> callback
- function filter_customize_sanitize_id( $array, $int, $int ) {
- // make filter magic happen here...
- return $array;
- };
- // add the filter
- add_filter( "customize_sanitize_{$id}", 'filter_customize_sanitize_id', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "customize_sanitize_{$id}", 'filter_customize_sanitize_id', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /modules/custom-css/custom-css-4.7.php
- add_filter( "customize_sanitize_{$setting->id}", array( __CLASS__, 'sanitize_css_callback' ), 10, 2 );