AnsPress_Notification_Hook::undo_vote_up( integer $post_id )
Description #
Notify when user recive an up vote.
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: addons/free/notification.php
379 380 381 382 383 384 385 | public static function undo_vote_up( $post_id ) { ap_delete_notifications( array ( 'ref_id' => $post_id , 'actor' => get_current_user_id(), 'verb' => 'vote_up' , ) ); } |
Expand full source code Collapse full source code View on GitHub: addons/free/notification.php:379
Add your comment