Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ericakfranz/4ca93ae068fe15eadcfc to your computer and use it in GitHub Desktop.
Save ericakfranz/4ca93ae068fe15eadcfc to your computer and use it in GitHub Desktop.
Remove optins from search results when using the old WordPress-only OptinMonster plugin.
function optin_monster_exclude_from_search( $args ) {
$args['exclude_from_search'] = true;
return $args;
}
add_filter( 'optin_monster_post_type_args', 'optin_monster_exclude_from_search' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment