get_default(); } /** * Gets the callback for sanitizing the setting's value before saving. * * @since 1.98.0 * * @return callable Sanitize callback. */ protected function get_sanitize_callback() { return array( $this, 'sanitize_list_items' ); } /** * Filters array items. * * @since 1.98.0 * * @param array $items The original array items. * @return array Filtered items. */ abstract protected function sanitize_list_items( $items ); }