Well, I think I understood the loop thingie. It *is* inside the loop.
My code is :
<? if ($posts) { foreach ($posts as $post) { start_wp(); ?>
<? the_weekday_date('<h2><span>',' ') ; the_date('j F Y','','</span></h2>') ; ?>
<div class="post">
<h3 class="storytitle" id="post-<? the_ID(); ?>">" rel="bookmark" title="Permanent link : <? the_title_rss() ?>"><? the_title(); ?></h3>
<div class="meta"> In: <? the_category(", ") ?> — <? the_author() ?> @ <? the_date('j F Y','','') ?> . <? the_time('H:m') ?> <? edit_post_link("x"); ?>
</div>
<div class="storycontent">
<? the_content(); ?>
(...)
This gives :
<h2><span>Tuesday 20 April 2004</span></h2>
<div class="post">
<h3 class="storytitle" id="post-6">This is a post</h3>
<div class="meta">In: General — ozh @ . 13:04 x</div> <!-- meta -->
<div class="storycontent"> [... the post itself ]
The second “the_date” just doesnt show, and the first one, along with the_weekday_date(), display correctly.
Thanks if anyone can help