Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'genesis_pre_get_option_content_archive_limit', __NAMESPACE__ . '\set_content_archive_limit', 11, 1 );
  4. /**
  5. * Forces the Genesis > Settings > Content Archives > Limit Content value to
  6. * prevent an error with Events Calendar (v4.8.2) Archive pages in Genesis
  7. * themes.
  8. */
  9. function set_content_archive_limit() {
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement