Advertisement
designbymerovingi

Do not show video after it has awarded points 100 times

Aug 19th, 2014
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. add_filter( 'mycred_video_output', 'mycred_limit_video_views', 10, 2 );
  2. function mycred_limit_video_views( $output, $atts ) {
  3.  
  4.     global $wpdb;
  5.  
  6.     $mycred = mycred();
  7.     $count = $wpdb->get_var( "SELECT COUNT( * ) FROM {$mycred->log_table} WHERE ref = 'watching_video' AND data = %s;", $atts['id'] );
  8.    
  9.     $limit = 100;
  10.  
  11.     if ( $count >= $limit )
  12.         return '';
  13.  
  14.     return $output;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement