Created
October 27, 2017 16:47
-
-
Save digisavvy/b65ba623ea44851f606794c9045e6154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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