: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* Redux Framework field sanitizing config.
* For full documentation, please visit: http://devs.redux.io/
* @package Redux Framework
defined( 'ABSPATH' ) || exit;
'title' => esc_html__( 'Field Sanitizing', 'your-textdomain-here' ),
// 'desc' => esc_html__( 'For full documentation on sanitizing, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/configuration/fields/sanitizing/" target="_blank">https://devs.redux.io/configuration/fields/sanitizing/</a>',
'id' => 'opt-text-uppercase',
'title' => esc_html__( 'Text Option - Force Uppercase', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Uses the strtoupper function to force all uppercase characters.', 'your-textdomain-here' ),
'desc' => esc_html__( 'This is the description field, again good for additional info.', 'your-textdomain-here' ),
'sanitize' => array( 'strtoupper' ),
'default' => 'Force Uppercase',
'id' => 'opt-text-sanitize-title',
'title' => esc_html__( 'Text Option - Sanitize Title', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Uses the WordPress sanitize_title function to format text.', 'your-textdomain-here' ),
'desc' => esc_html__( 'This is the description field, again good for additional info.', 'your-textdomain-here' ),
'sanitize' => array( 'sanitize_title' ),
'default' => 'Sanitize This Title',
'id' => 'opt-text-custom-sanitize',
'title' => esc_html__( 'Text Option - Custom Sanitize', 'your-textdomain-here' ),
'subtitle' => esc_html__( 'Uses the custom function redux_custom_sanitize to capitalize every other letter.', 'your-textdomain-here' ),
'desc' => esc_html__( 'This is the description field, again good for additional info.', 'your-textdomain-here' ),
'sanitize' => array( 'redux_custom_sanitize' ),
'default' => 'Sanitize This Text',