Every 4 Posts in page show advertising

Posted in: Newspaper
Post count: 16

is that possible to add in td_block_3 every 4 posts show advertising?
i created the code but i do not know where should i put it in theme

<?php
if( have_posts() ) {
$ad_counter = 0;
$after_every = x; //change this to the number of posts
while( have_posts() ) {
$ad_counter++;
the_post();
?>
<h2><?php the_title(); ?></h2>
<?php
// Display content
if( $ad_counter >= 3 ) {
$ad_counter = 0;
echo '<h2 style="color:red;">Advertisement or custom content here</h2>';
}
}
}
?>

Post count: 20688

Hi,

This is where the block is defined
https://www.screencast.com/t/j5wHiHVcHQM
And the module of block 3
https://www.screencast.com/t/6gMBmK0D
I could not say if the code you have will work, it may require more modifications to achieve something like that, if possible. Maybe it would be easier to think of a different way.

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.