Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save digisavvy/b65ba623ea44851f606794c9045e6154 to your computer and use it in GitHub Desktop.

Select an option

Save digisavvy/b65ba623ea44851f606794c9045e6154 to your computer and use it in GitHub Desktop.
// Allow custom status to be selected in GF
add_filter( 'gform_post_status_options', 'add_custom_post_status' );
function add_custom_post_status( $post_status_options ) {
$post_status_options['custom_status'] = 'pitch';
return $post_status_options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment