• Hi!

    I think I got stuck. I am trying to get

    !is_page(array(4,133)) || strpos($_SERVER[‘QUERY_STRING’], “mc_id”)!==false

    to work but it doesn’t.

    !is_page(array(4,133))
    –> works

    strpos($_SERVER[‘QUERY_STRING’], “mc_id”)!==false
    –> works

    but

    !is_page(array(4,133)) || strpos($_SERVER[‘QUERY_STRING’], “mc_id”)!==false
    –> doesn’t work

    It must be a really really dumb embarassing error ??

    Please help …

    Alex

Viewing 1 replies (of 1 total)
  • max

    (@maximledoux)

    Maybe try !is_page(array(4,133)) || (strpos($_SERVER['QUERY_STRING'], 'mc_id') !== false)

Viewing 1 replies (of 1 total)
  • The topic ‘I don’t get it :-(’ is closed to new replies.