wpgenie

Instant Winners Tab paging - custom number of entries per page

Apr 22nd, 2025 (edited)
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /**
  2.  * Custom number of instant winners per page in instant winners TAB
  3.  */
  4. add_filter( 'woocommerce_lottery_instant_winners_per_page', 'woocommerce_lottery_instant_winners_per_page_custom', 100 );
  5.  
  6. function woocommerce_lottery_instant_winners_per_page_custom() {
  7.    
  8.     return 30;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment