这是我的 WordPress 循环。我尝试了一些东西,但没有像我想要的那样工作。
while ( $loop->have_posts() ) : $loop->the_post();
$timestamp = get_post_meta( $post->ID, '_tatort_datum', true );
$ts_jahr = strftime("%Y",$timestamp);
if($ts_jahr != $jahr_l) {
echo '<h2 class="spacer_jahr" id="'. $ts_jahr .'">'. $ts_jahr .'</h2>';
}
$jahr_l = $ts_jahr;
$ts_monat = strftime("%m",$timestamp);
if($ts_monat != $monat_l) {
echo '<h3 class="spacer_monat" id="'. strtolower($monat[$ts_monat]) . "_" . $ts_jahr. '">'. $monat[$ts_monat] .'</h3>';
}
$monat_l = $ts_monat;
<article>here the content</article>
<?php endwhile; wp_reset_query(); ?>
输出是:
<h2>Headline</h2>
<h3>Headline</h3>
<article>Content</article>
<article>Content</article>
<article>Content</article>
<h3>Headline</h3>
<article>Content</article>
<article>Content</article>
但是,我需要这个输出:
<h2>Headline</h2>
<div class="month"> /* Here is the Change */
<h3>Headline</h3>
<article>Content</article>
<article>Content</article>
<article>Content</article>
<div>
<div class="month">
<h3>Headline</h3>
<article>Content</article>
</div>
但是,我现在不知道该怎么做。我希望div
每个新月都有一个围绕新文章的容器,所以我需要一个提示或代码片段来以正确的方式解释我。