Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save badabingbreda/0865817bdd4aac14fad99183734c8847 to your computer and use it in GitHub Desktop.
Save badabingbreda/0865817bdd4aac14fad99183734c8847 to your computer and use it in GitHub Desktop.
Toolbox Filter Example - conditional filter check newsletteroffer
<?php
add_filter( 'conditional_filter_check_newsletteroffer' , 'my_check_newsletteroffer' ,10 ,2 );
function my_check_newsletteroffer( $is_visible , $node ) {
return isset( $_GET['newsletteroffer'] ) ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment