I'm using wordpress I know how to put ad after first post but how to put html ad after first post just on home page not on older entries I'm using <?php if(!$show_ads){ ?> My ad html sample <?php $show_ads = 1; } ?> I don't know where i can ad (is_home) Please help guys
You could do it using the $_SERVER['REQUEST_URI'], something like <?php if(($_SERVER['REQUEST_URI'] == '/' || $_SERVER['REQUEST_URI'] == '/index.php') && $show_ads != 1){ ?> My ad html sample <?php $show_ads = 1; } ?> PHP: That will basically only show them if the URI is without the index.php or with it for your domain if you understand what I mean