Notifications::undo_vote_up( integer $post_id )
Description #
Notify when user recive an up vote.
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: addons/notifications/notifications.php
public 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/notifications/notifications.php:435
Add your comment