Advertisement
wclovers

Untitled

Jun 6th, 2023
796
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter( 'wcfm_datatable_page_length', function() {
  2.     global $wp;
  3.  
  4.     if ( isset( $wp->query_vars['withdrawal-requests'] ) ) {
  5.         return 100;
  6.     }
  7.    
  8.     if ( isset( $wp->query_vars['wcfm-messages'] ) ) {
  9.         return 25;
  10.     }
  11.  
  12.     return 50;
  13. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement