<?php if ( "<?php echo c2c_get_custom('post_image_width'); ?>" > 200 ): ?> GOOGLE ADSENSE CODE HERE <?php endif; ?> The "<?php echo c2c_get_custom('post_image_width'); ?>" is a custom field I use in wordpress to indicate a numerical value. I want it to be like if 300 > 200, then show adsense.
why not just put it this way <?php if(c2c_get_custom('post_image_width') > 200) { {GOOGLE_CODE_HERE} } ?> PHP: