Last active
August 29, 2015 14:06
-
-
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.
This file contains hidden or 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 // 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