Skip to content

Instantly share code, notes, and snippets.

@technosailor
Created December 14, 2011 20:41
Show Gist options
  • Save technosailor/1478410 to your computer and use it in GitHub Desktop.
Save technosailor/1478410 to your computer and use it in GitHub Desktop.
Hook onto user_register
<?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