Show Age Gate on every page except on 2
-
Hi Phil,
great work with the age gate plugin.
I am currently trying to exclude age gate on 2 pages. On all other pages age gate should be visible.
How can I achive this via filter? In the options restricition is set to “All content”I tried this in my functions.php
add_filter('age_gate_restricted', function ($restricted, $meta) { if (is_page( 509 )) { return false; } else { return $restricted; } }, 10, 2);
but this is actually not working. any idea what i am doing wrong?
Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Show Age Gate on every page except on 2’ is closed to new replies.