Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Hacks
    In reply to: Store custom signup fields
    Thread Starter mm_anders

    (@mm_anders)

    Furthermore, by looking at this link it seems that register_post is only called in wp-login.php

    Forum: Hacks
    In reply to: Store custom signup fields
    Thread Starter mm_anders

    (@mm_anders)

    I’ve tried that one but it won’t trigger, I’ve put this in my main plugin PHP file:

    add_action('register_post','mm_handle_registration',10,3);
    function mm_handle_registration($login,$email,$errors)
    {
    	print_r($_POST);
    	echo "Test:<br>$login,$email,$errors<br>";
    	die;
    }

    But I never see that code…

Viewing 2 replies - 1 through 2 (of 2 total)