Skip to content

Instantly share code, notes, and snippets.

@adamsilverstein
Last active March 22, 2017 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamsilverstein/c09ed1b084b0a81fe3e8240c42ee425c to your computer and use it in GitHub Desktop.
Save adamsilverstein/c09ed1b084b0a81fe3e8240c42ee425c to your computer and use it in GitHub Desktop.
// Show 10 posts in the quick draft list.
wp.hooks.addFilter(
'dashboard_recent_drafts_fetch_args',
function( $args ) {
$args['per_page'] = 10;
return $args;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment