Validating a specific field before submitting
-
I would like to validate a field to be a eight-digit number but am not sure how to implement this.
I have found the follow code which should probably be implemented in my functions.php
add_action( 'wpmem_pre_register_data', 'my_reg_hook' ); function my_reg_hook( $fields ) { }
Two questions,
Is this the correct hook to use for this? And how would I call one of my fields?
The rest I’ll be able to figure out.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Validating a specific field before submitting’ is closed to new replies.