我使用下面的代码来显示一个类别中的帖子列表,但我想在列表上方自己的h2标记中显示标题。
<ul class="subcats-list">
<?php
$weightloss = new WP_Query();
$weightloss->query(\'showposts=5&include=4\');
while ($weightloss->have_posts()) : $weightloss->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul><!-- subcat -->
编辑:
所以我试着用single_cat_title
, 然而,所有子类别div的父类别的标题即将出现。这里有一个div的例子,我复制了多次,其中查询从不同的子类别中提取帖子。我想为每个以上的职位子类别的标题。我意识到它不起作用,因为我正在用该函数返回父类别,我只是无法理解php。。。
<ul class="subcats-list">
<h2 class="subcats-title"><?php single_cat_title(); ?></h2>
<?php
$weightloss = new WP_Query();
$weightloss->query(\'showposts=5&cat=4\');
while ($weightloss->have_posts()) : $weightloss->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul><!-- subcat -->