Advertisement
arie_cristianD

change jnews resource limit

Oct 22nd, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. add_filter( 'jnews_load_resource_limit', 'change_resource_limit' );
  2.  
  3. function change_resource_limit( $limit ) {
  4.     $limit = 50; /* chane the limit */
  5.     return $limit;
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement