Post enumeration
-
Hey,
I would like to enumerate my posts starting by 1.
I don’t want to write every number manually in every post but I’m not sure how to automate the process.
Here’s my code?– ENTRY NUMBER is the place where the dynamic number sould go.
<?php while ( have_posts() ) : the_post() ?> <div class="col1"> <div id="post-<?php the_ID(); ?>" class="entry"> <h2 class="entry-title">ENTRY NUMBER <?php the_title() ?></h2> <div class="entry-content"><?php the_content('(...)'); ?></div> <span class="meta-data"> <?php the_category(); ?> • <?php sp_authors_display(''); ?> </span> </div> <!-- end post-xy --> </div> <!-- end col1 --> <?php endwhile; ?>
Thanks in advance!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Post enumeration’ is closed to new replies.