Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ataylorme/4101284 to your computer and use it in GitHub Desktop.
Save ataylorme/4101284 to your computer and use it in GitHub Desktop.
Set screen option for post/page pagination in backend
function pages_per_col_admin(){
return 12;
}
add_filter( 'edit_page_per_page', 'pages_per_col_admin' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment