Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/6f7bdb12022e2d481dc0ef36d3114c80 to your computer and use it in GitHub Desktop.
Save plugin-republic/6f7bdb12022e2d481dc0ef36d3114c80 to your computer and use it in GitHub Desktop.
<?php
/*
* Enable workflow for other field types
*/
function prefix_integrated_field_names( $fields ) {
$fields[] = 'checkbox';
return $fields;
}
add_filter( 'rawc_pewc_integration_integrated_field_types', 'prefix_integrated_field_names' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment