Hi Leo,
Thanks for fast reply.
I use this hook to have my custom menu (Elementor, id: 10004) show up on all pages, except for:
id: 6198 = index page
id: 11338 = landing page
id: 11340 = landing page
The menu is disabled on my index page but they are showing up on my landings pages.
This works:
<?php if ( ! is_page( 6198 ) ) : ?>
[elementor-template id=”10004″]
<?php endif; ?>
This works:
<?php if ( ! is_page( 11338 ) ) : ?>
[elementor-template id=”10004″]
<?php endif; ?>
This don’t:
<?php if ( ! is_page( 6198, 11338, 11340 ) ) : ?>
[elementor-template id=”10004″]
<?php endif; ?>