esc_html__( 'Field Sanitizing', 'your-textdomain-here' ), 'id' => 'sanitizing', // phpcs:ignore // 'desc' => esc_html__( 'For full documentation on sanitizing, visit: ', 'your-textdomain-here' ) . 'https://devs.redux.io/configuration/fields/sanitizing/', 'subsection' => true, 'fields' => array( array( 'id' => 'opt-text-uppercase', 'type' => 'text', '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', ), array( 'id' => 'opt-text-sanitize-title', 'type' => 'text', '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', ), array( 'id' => 'opt-text-custom-sanitize', 'type' => 'text', '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', ), ), ) );