get_template_part(); } /** * Type-specific sanitization for the sortable field. * * @since 2.2.5 * * @param mixed $value The raw submitted value. * * @return mixed The sanitized value. */ protected function sanitize_value( $value ) { if ( is_string( $value ) ) { $value = json_decode( $value, true ); } return is_array( $value ) ? array_map( 'sanitize_key', $value ) : array(); } }