Increment, continuous post ID
-
Hi all, I need to add an increment, continuous post ID to every post other than WordPress default post_ID, so do a search and found this post is useful:
https://www.ads-software.com/support/topic/auto-increment-counter?replies=6#post-1088277
With the code
<div id="post<?php echo($wp_query->current_post + 1); ?>">
I could get IDs like 1, 2, 3, 4, 5. but the next page (/page/2/) the ID of the first post reset to 1, I expect the number could be 6, 7, 8, 9 and 10. does anyone know how to make the ID continuous even in next page?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Increment, continuous post ID’ is closed to new replies.