Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thomasgriffin/0ef000448c7cb5903587 to your computer and use it in GitHub Desktop.
Save thomasgriffin/0ef000448c7cb5903587 to your computer and use it in GitHub Desktop.
Increase the post selection limit for "load exclusively on" and "never load on" to 5000 posts in OptinMonster.
<?php // Do not include this opening PHP tag!
add_filter( 'optin_monster_post_selection_limit', 'tgm_om_post_selection_limit' );
function tgm_om_post_selection_limit( $limit ) {
return 5000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment