Skip to content

Instantly share code, notes, and snippets.

@ericakfranz
Created March 6, 2015 18:22
Show Gist options
  • Save ericakfranz/959613aa789004a377f5 to your computer and use it in GitHub Desktop.
Save ericakfranz/959613aa789004a377f5 to your computer and use it in GitHub Desktop.
Display OptinMonster optins based on page language
add_filter( 'optin_monster_output', 'tgm_om_only_swedish', 100 );
function tgm_om_only_swedish( $optins ) {
// Your function to check for Swedish. Change as necessary.
if ( ! is_swedish() ) {
$optins = array();
}
return $optins;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment