php - How to add any text box after every 5 latest posts in wordpress -
i have updated 20 posts in wordpress theme. , need add own text box after every 5 posts. can add 4 text box after every 5 post. think can done $post_counter
please 1 give me query question.
my code seems to,
<?php query_posts( array('posts_per_page'=>20,orderby=>post_date, order=>desc) ); while ( have_posts() ) : the_post(); ?> <?php the_title(); ?> <?php the_post_thumbnail(); ?> <?php endwhile; ?>
i read comment , updated @zameerkhan code.
<?php $query = new wp_query( array('posts_per_page' => 20, orderby => post_date, order => desc) ); $p = 1; while ( $query->have_posts() ) : $query->the_post(); ?> <?php the_title(); ?> <?php the_post_thumbnail(); ?> //this create text box after 5 post name mytext1,mytext2 etc. <?php echo ($p%5 == 0) ? '<input type="text" name="mytext'.($p/5).'" />': ""; $p++; ?> <?php endwhile; ?>
Comments
Post a Comment