Advertisement
wpgenie

set all lotteries to manually choose winners and ignore setting in individual lottery when using Pick Number Mod addon

Oct 15th, 2020
3,067
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. // set all lotteries to manually choose winners and ignore setting in individual lottery when using Pick Number Mod addon
  2.  
  3. function custom_lottery_manualy_winners( $metadata, $object_id, $meta_key, $single ) {
  4.     if ( isset( $meta_key ) && '_lottery_manualy_winners' === $meta_key ) {
  5.         return 'yes';
  6.     }
  7.     return $metadata;
  8. }
  9.  
  10. add_filter( 'get_post_metadata', 'custom_lottery_manualy_winners', 100, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement