ericakfranz
7/8/2015 - 2:59 PM

Remove optins from search results when using the old WordPress-only OptinMonster plugin.

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' );