Deprecated Functions
-
Since create_function is deprecated, can anyone help me fix the following code?
static function track_detailed_user_activity() {
add_action(‘password_reset’, create_function(‘$user’, ‘ WP_CRM_F::insert_event(array(“object_id”=> $user->ID, “attribute” => “detailed_log”, “other” => 5, “action” => “password_reset”)); ‘));
add_action(‘wp_login’, create_function(‘$user_login’, ‘ $user = get_user_by(“login”, $user_login); WP_CRM_F::insert_event(array(“object_id”=> $user->ID, “attribute” => “detailed_log”, “other” => 2, “action” => “login”)); ‘));
}
- The topic ‘Deprecated Functions’ is closed to new replies.