Advertisement
designbymerovingi

mycred-adjust-view-content-hook

Oct 24th, 2016
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /**
  2.  * Adjust View Content Hook
  3.  * Allow users to receive points for viewing content
  4.  * multiple times until reached limit.
  5.  * @version 1.0
  6.  */
  7. add_filter( 'mycred_has_entry', 'mycredpro_allow_view_points_for_same', 10, 6 );
  8. function mycredpro_allow_view_points_for_same( $has, $reference, $ref_id, $user_id, $data, $type ) {
  9.  
  10.     if ( $reference != 'view_content' ) return $has;
  11.     return false;
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement