我想创建一个递归循环来显示我的tag.php Wordpress模板看起来很酷。
例如- 我有标签名称"运动"。
我想将结果拆分为按类别显示。
像这样:
骑士新闻
OKC新闻
我该怎么做?
非常感谢。
答案 0 :(得分:0)
MX0:
实际上我知道如何打印但只在一个类别中看起来像这样:
<div class="row main-row main-row-first">
<div class="container">
<!-- Category Section -->
<section class="search-section post">
<div class="row">
<!-- Category Title -->
<div class="col-md-4">
<div class="post-header">
<h2 class="post-title extra-big">Cavs News</h2>
</div>
</div>
<!-- Category Title -->
<div class="col-md-7 col-md-offset-1">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
?>
<!-- Category Post -->
<article class="search-section-item news-post">
<a href="#">
<header class="news-post-header">
<h1 class="news-post-title red"><?php the_title(); ?></h1>
<span class="news-post-meta"><?php the_date('d.m.Y') ?> / <?php the_author() ?></span>
</header>
<div class="news-post-content">
<p>
<?php echo mb_strimwidth( get_field('intro'), 0, 100, '...' ) ?> <i class="readmore-icon"></i>
</p>
</div>
</a>
</article>
<?php endwhile; ?>
</div>
</div>
</section>
<!-- Category Section -->
</div><!-- end .container -->
</div>
我知道我的代码应首先在标题中开头,但我不知道如何