Created
December 14, 2011 20:41
-
-
Save technosailor/1478410 to your computer and use it in GitHub Desktop.
Hook onto user_register
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function do_extra_user_stuff( $post_id ) | |
{ | |
add_to_ldap_or_something( $post_id ); | |
} | |
add_action( 'user_register', 'do_extra_user_stuff' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment