this works:
<?php if (is_page('3907')) { ?>
do nothing
<? } else { ?>
do something
<?php } ?>
as you can see if is that page it will do nothing, so how can i use a php if not for that:
something like:
<?php if NOT (is_page('3907')) { ?>
do something
<?php } ?>
Is that correct??