Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. // Copy from below here
  4.  
  5. function my_pmpro_set_username() {
  6. if ( empty( $_REQUEST['username'] ) && ! empty( $_REQUEST['bemail'] ) ) {
  7. $_REQUEST['username'] = $_REQUEST['bemail'];
  8. }
  9. }
  10. add_action( 'init', 'my_pmpro_set_username' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement