Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Created April 10, 2019 14:34
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 nickdavis/d619cc67d6f3467bf129eb150bed66d8 to your computer and use it in GitHub Desktop.
Save nickdavis/d619cc67d6f3467bf129eb150bed66d8 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'genesis_pre_get_option_content_archive_limit', __NAMESPACE__ . '\set_content_archive_limit', 11, 1 );
/**
* Forces the Genesis > Settings > Content Archives > Limit Content value to
* prevent an error with Events Calendar (v4.8.2) Archive pages in Genesis
* themes.
*/
function set_content_archive_limit() {
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment