Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created November 15, 2017 10:52
Show Gist options
  • Save wpflippercode/1de1dbaeabea56c68740ea8ce1bf40a1 to your computer and use it in GitHub Desktop.
Save wpflippercode/1de1dbaeabea56c68740ea8ce1bf40a1 to your computer and use it in GitHub Desktop.
Display / Hide Age Verification Popup For Particular Post / Page
add_filter('agp_verify_age','agp_show_modal');
function agp_show_modal($show_popup,$post_id) {
//check condition according to post id & then return boolean value
return $show_popup;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment