当我尝试在类内使用profile\\u update挂钩时,回调函数不会被调用。
public function __construct() {
add_action(\'profile_update\', array( $this, \'user_profile_update\', 10, 2) );
}
function user_profile_update( $user_id, $old_user_data ) {
die(var_dump($old_user_data));
}
在类之外,回调函数可以正常工作。