Page-type targeting
| Value | Matches |
|---|---|
all | Every page (default) |
front | is_front_page() |
single | is_singular() |
archive | Category, tag, date archives, blog index |
search | is_search() |
404 | is_404() |
URL pattern targeting
Comma-separated URL paths relative to the domain root. Use * as a wildcard. Case-insensitive; trailing slashes ignored.
/about, /blog/*, /shop/product-category/*User condition
| Value | Behavior |
|---|---|
all | Every visitor (default) |
logged_in | Only logged-in users |
logged_out | Only logged-out visitors |
Check order
All conditions must pass before the snippet fires:
- Plugin globally enabled?
- Safe Mode off?
?oci_safe=1not in URL?- Page type matches?
- User condition matches?
- URL pattern matches?
- Snippet itself is active?
If any check fails, the snippet stays out of the page.

