formcierge_entry_statuses
Filter
Since v1.0.0
Modify the list of available entry statuses. Add custom statuses to model your team's workflow.
Parameters
$statuses
array
Associative array of status_slug => label.
includes/Controllers/EntryController.php
Basic Usage
add_filter( 'formcierge_entry_statuses', function ( $statuses ) {
$statuses['in-progress'] = 'In Progress';
$statuses['awaiting-payment'] = 'Awaiting Payment';
return $statuses;
} );