banner area after 1st post
-
Hi, I want to ad a banner area after my first expert on my home page (https://www.elektroretailmagazine.nl). I’ve inserted the following code in index.php of my child theme, but it doesn’t work. What am I doing wrong?
The code:
<?php if ( ot_get_option(‘blog-standard’) == ‘on’): ?>
<?php $i = 1; ?> <!– initialize the post counter –>
<?php while ( have_posts() ): the_post(); ?>
<?php get_template_part(‘content-standard’); ?>
<?php if ($i % 1 == 0) { // if we’ve displayed 1 post
echo ‘<div class=”my-ad-widget”>’; // add a container
dynamic_sidebar(‘WidgetsNaEerstePost’); // insert the ad sidebar
echo ‘</div>’; // close container
}
$i++; // increment the post counter
?>
<?php endwhile; ?>
<?php else: ?>
- The topic ‘banner area after 1st post’ is closed to new replies.