Skip to content

Instantly share code, notes, and snippets.

@technoknol
Created February 12, 2015 10:03
Show Gist options
  • Save technoknol/c8141b101c0e38511883 to your computer and use it in GitHub Desktop.
Save technoknol/c8141b101c0e38511883 to your computer and use it in GitHub Desktop.
Increase/Decrease number of comments in admin side in WordPress
<?php
// Increase/Decrease number of comments in admin side in WordPress
add_filter('comments_per_page', 'increase_count', 99, 2);
function increase_count($no, $comment_status){
return 50 ; // change this no.
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment