Some tips on adding ads code to wordpress
August 7th, 2010 — adminIf we do not want ads code shows at wordpress homepage, but at the other pages, we can use the following code:
<?php if (($wp_query->current_post == 0)and (!is_home())) : ?>
<div style=”float:right;margin-left:20px”><br>
Buy sunglasses online.
</div>
<?php endif; $postcnt++; ?>
If we want the ads codes show at all pages, we can use the following codes: Read the rest of this entry »