customize_sanitize_{$this->id}, $value, $this

customize_sanitize_{$this->id}, $value, $this

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('customize_sanitize_{$this->id}, $value, $this') is found 2 times:

  • /wp-includes/class-wp-customize-setting.php line 581
    		 *
    		 * @param mixed                $value   Value of the setting.
    		 * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
    		 */
    		return apply_filters( "customize_sanitize_{$this->id}", $value, $this );
    	}
    
    	/**
    	 * Validates an input.
    	 *
    	 * @since 4.6.0
    
  • /wp-includes/customize/class-wp-customize-nav-menu-setting.php line 444
    			$value['name'] = _x( '(unnamed)', 'Missing menu name.' );
    		}
    
    		/** This filter is documented in wp-includes/class-wp-customize-setting.php */
    		return apply_filters( "customize_sanitize_{$this->id}", $value, $this );
    	}
    
    	/**
    	 * Storage for data to be sent back to client in customize_save_response filter.
    	 *
    	 * See {@see 'customize_save_response'}.