get_template_part(); } /** * Type-specific sanitization for the checkbox-multiple field. * * @since 2.2.5 * * @param mixed $value The raw submitted value. * * @return mixed The sanitized value. */ protected function sanitize_value( $value ) { if ( ! is_array( $value ) ) { return array(); } return array_filter( array_map( 'sanitize_text_field', $value ) ); } }