我有一个wordpress问题。我想显示子类别中的前 5 个类别。
例如
主类别:节日 子类别:IndependencedayDay
所以在我的单篇文章中,我想显示独立日类别的前 5 篇文章
我自己编写代码,但显示错误的帖子。我想显示子类别的帖子。
我想展示独立日的帖子告诉我
<?php query_posts('category_name=$catnamelike&showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="umaylike">
<table width="287" border="0">
<tr>
<td colspan="3">
<h3><a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a> </h3>
</td>
</tr>
</table>
</div>
<?php endwhile; ?>