Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Created August 10, 2018 20:45
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 cliffordp/70238bd7546580d653fce7e1851e36bd to your computer and use it in GitHub Desktop.
Save cliffordp/70238bd7546580d653fce7e1851e36bd to your computer and use it in GitHub Desktop.
Allow the REST API to return more than 50 events per page; the `per_page` URL query parameter.
<?php
/**
* Allow the REST API to return more than 50 events per page; the `per_page` URL
* query parameter.
*
* @link https://gist.github.com/cliffordp/70238bd7546580d653fce7e1851e36bd
*/
add_filter( 'tribe_rest_event_max_per_page', function() { return 250; } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment