Riassunto AI
Descrizione
Il filtro wpforms_pro_admin_entries_export_skip_not_selected_choices viene utilizzato per restituire true o false per saltare le scelte non selezionate per Checkbox e Checkbox Items durante l'esportazione delle voci.
Parametri
- $skip_not_selected_choices
- (bool) (Richiesto) Determina se saltare le scelte non selezionate per i campi Checkbox e Checkbox Items. Il valore predefinito è
false(per mostrare)
Origine
wpforms/src/Pro/Admin/Entries/Export/Traits/Export.php
Maggiori Informazioni
Il filtro wpforms_pro_admin_entries_export_skip_not_selected_choices, se impostato su true, salterà qualsiasi selezione di Checkbox o Checkbox Items che non è stata selezionata al momento dell'invio del modulo.
Esempi
/** * 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' );