Created
April 10, 2019 14:34
-
-
Save nickdavis/d619cc67d6f3467bf129eb150bed66d8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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