我正在尝试获取一个页面,列出所有子类别,然后显示它们的名称和该类别中最近帖子的缩略图。
这是我得到的以下代码,它似乎从其他不在该类别中的帖子中获取一些缩略图,并重复这些类别。
任何帮助都将不胜感激。
<?php get_header(); ?>
<div id="left_full">
<?php
$args = array(
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'child_of\' => \'3592\'
);
$categories = get_categories($args);
foreach($categories as $category) {
query_posts( $category->name . \'posts_per_page=1\' );
while ( have_posts() ) : the_post();
echo \'<div class="interview_item">\';
echo \'<div class="interview_thumb"><a href="#" rel="bookmark">\'; the_post_thumbnail(\'interview-thumb\'); echo \'</a></div>\';
echo \'<h1><a href="\' . get_category_link( $category->term_id ) . \'" title="\' . sprintf( __( "View all posts in %s" ), $category->name ) . \'" \' . \'>\' . $category->name.\'</a> </h1> \';
echo \'</div>\';
endwhile;
wp_reset_query();
}
?>
</div>
</div>
<?php get_footer(); ?>