How to disable validations when saving draft ?
-
I have custom post types and added fields using below code :
add_filter( 'rwmb_meta_boxes', 'wp_register_meta_boxes' );
function wp_register_meta_boxes( $meta_boxes ) { return $meta_boxes[] = array (...........); }
Now on saving post as draft, validations of meat box created with above runs. I want to disable validations when post is saved as draft.
Please suggest if this is possible ?
Thanks!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to disable validations when saving draft ?’ is closed to new replies.