I'm wondering if it's possible to programmatically number each post on a page, by adding an id="#" to the post div itself... So, for example, the output would look like this:
blah blah blah
<div id="post1" class="bPost" lang="en-US">post content</div>
<div id="post2" class="bPost" lang="en-US">post content</div>
<div id="post3" class="bPost" lang="en-US">post content</div>
blah blah blah
Anyone have any ideas?
jj.
Sure, you should be able to do this. Just insert a little counter variable that you can output in the middle of your div tag, then bump up one right before the loop starts over: