Hi , I was wondering if its fine by google guidelines, it really should be i guess is to exclude my office ip/home ip from seeing the adds. specially for the office. like <?php $ips = array('127.7.7.1','255.68.0.1'); $showadds = isset($_SERVER['REMOTE_ADDR']) && !in_array($_SERVER['REMOTE_ADDR'],$ips) ? : true : false; if ($showadds !== false) { <!-- adds --> } ?> PHP:
Yes you can and it's a very good idea as well. But it looks like you have your internal IPs there, not your WAN ips.
so if i add my ownip at the top and add this to my stie, google ads will not show on that ip and is google ok with this?