Forked from thomasgriffin/gist:0ef000448c7cb5903587
Last active
August 29, 2015 14:17
-
-
Save ericakfranz/fc69000c39879189568b to your computer and use it in GitHub Desktop.
Increase the post query limit for the Output tab setting by uploading this file as a plugin.
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 | |
/** | |
* Plugin Name: OptinMonster Query Limit | |
* Description: Increases the default query limit for page-level targeting. | |
* Version: 1.0.0 | |
*/ | |
add_filter( 'optin_monster_post_selection_limit', 'tgm_om_post_selection_limit' ); | |
function tgm_om_post_selection_limit( $limit ) { | |
return 9999; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment