Add ad code after every 3 posts
-
Hi everyone,
I’ve been trying to add a code to my site’s index.php file in order to have ads displayed after every 3rd post. I’ve tried a number of options, but none has worked so far. I’m a beginner, so I often get confused with these lines of code. I’d really appreciate if someone could help!
Here is what my index.php looks like
<?php /** * The index template for displaying content * * @package Cryout Creations * @subpackage Tempera * @since Tempera 1.1 */ $options = tempera_get_theme_options(); foreach ($options as $key => $value) { ${"$key"} = $value; } ?> <section id="container" class="<?php echo tempera_get_layout_class(); ?>"> <div id="content" role="main"> <?php cryout_before_content_hook(); if ( have_posts() ) : /* Start the Loop */ while ( have_posts() ) : the_post(); get_template_part( 'content/content', get_post_format() ); endwhile; if($tempera_pagination=="Enable") tempera_pagination(); else tempera_content_nav( 'nav-below' ); else : ?> <article id="post-0" class="post no-results not-found"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Nothing Found', 'tempera' ); ?></h1> </header><!-- .entry-header --> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'tempera' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </article><!-- #post-0 --> <?php endif; cryout_after_content_hook(); ?> </div><!-- #content --> <?php tempera_get_sidebar(); ?> </section><!-- #container -->
I’m using tempera theme by cryout. THANKS!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add ad code after every 3 posts’ is closed to new replies.