wpDiscuz 7 API Documentation

  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentation
  4. Actions
  5. wpdiscuz_update_vote
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

wpdiscuz_update_vote

This hook can be used for doing some action once the user changes own vote for the comment.

Changelog

since 7.0.0 version

Parameters

1. $voteType (type: int) – the type of the vote (like or dislike)
2. $isUserVoted (type: string) – if the user previously voted or not
3. $comment (type: WP_Comment object) – the object of the comment

Usage

add_action("wpdiscuz_update_vote", function ($voteType, $isUserVoted, $comment) {
    if ($comment->user_id) {
        update_user_meta($comment->user_id, "user_votes", intval(get_user_meta($comment->user_id, "user_votes", true)) + $voteType);
    }
}, 10, 3);

Was this article helpful to you? Yes No