Hi there,
I Would like to know if there's a simple loop hack to check if there are more then 1 post posted on a single day. I have a daily photoblog and sometimes I post more then 1 picture on a day. I display the pictures in a long page one after another, but when I post more then 1 picture the page gets longer of course but I would like those posts to stack on each other. The thing I would like to accomplish is to have a html/div structure like this:
<div class="post">
<img/>
</div>
<div class="post more">
<img/><img/><img/>
</div>
<div class="post">
<img/>
</div>
cheers,
Marien