### [wpforms_pro_admin_entries_export_skip_not_selected_choices](https://wpforms.com/developers/wpforms_pro_admin_entries_export_skip_not_selected_choices/)

**Published:** January 11, 2024
**Author:** Editorial Team

**Excerpt:** The wpforms_pro_admin_entries_export_skip_not_selected_choices filter is used to skip non-selected choices for select fields when exporting entries. 

**Content:**

## Description

The `wpforms_pro_admin_entries_export_skip_not_selected_choices` filter is used to return true or false to skip non-selected choices for the **Checkbox** and **Checkbox Items** when exporting entries.

## Parameters

$skip\_not\_selected\_choices*(bool) (Required)* Determines whether to skip not selected choices for the **Checkbox** and **Checkbox Items** fields. The default is `false` (to show)## Source

`wpforms/src/Pro/Admin/Entries/Export/Traits/Export.php`

## More Information

The `wpforms_pro_admin_entries_export_skip_not_selected_choices` filter when set to `true` will skip any **Checkbox** or **Checkbox Items** selections that were not selected when the form was submitted.

## Examples

```

/**
 * Filters whether to skip not selected choices for multiple fields.
 *
 * @link   https://wpforms.com/developers/wpforms_pro_admin_entries_export_skip_not_selected_choices/
 *
 * @param bool $skip_not_selected_choices Whether to skip not selected choices.
 *
 * @return bool
 */

add_filter( 'wpforms_pro_admin_entries_export_skip_not_selected_choices', '__return_true' );

```

**Categories:** Filters Hooks

**Tags:** export, PHP

---

