我认为使用the user_registration hook 可能最适合你想做的事情。
文档中的示例:
add_action( \'user_register\', \'myplugin_registration_save\', 10, 1 );
function myplugin_registration_save( $user_id ) {
if ( isset( $_POST[\'first_name\'] ) )
update_user_meta($user_id, \'first_name\', $_POST[\'first_name\']);
}
为了符合WordPress的方式(并且如果您更换服务器,就不太可能遇到麻烦),您可能应该使用WP
HTTP API 将XML发送到其他URL。