Advertisement
arie_cristianD

disable pagination in category page

Mar 1st, 2024
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1.  
  2. add_filter( 'jnews_category_content_pagination', 'disable_category_pagination', 99, 4 );
  3.  
  4.  
  5. function disable_category_pagination( $option, $term_id ) {
  6.  
  7.     return 'disable';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement