Advertisement
vongrebelmotion

theme-my-login-custom.php

Jul 26th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php
  2. function tml_registration_errors( $errors ) {
  3.     if ( empty( $_POST['country'] ) )
  4.         $errors->add( 'empty_country', '<strong>ERROR</strong>: Please enter your country.' );
  5.     return $errors;
  6. }
  7. add_filter( 'registration_errors', 'tml_registration_errors' );
  8.  
  9. function tml_user_register( $user_id ) {
  10.     if ( !empty( $_POST['country'] ) )
  11.         update_user_meta( $user_id, 'country', $_POST['country'] );
  12. }
  13. add_action( 'user_register', 'tml_user_register' );
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement