我使用此代码在列中显示帖子。如何设置此部分(“cat=3&;numberposts=5&;offset=0”),以便存档页面自动从单击的类别中获取帖子?
<div id="column1">
<?php $posts = get_posts(\'cat=3&numberposts=5&offset=0\'); foreach ($posts as $post) : start_wp(); ?>
<?php static $count1 = 0; if ($count1 == "5") { break; } else { ?>
<a href="<?php the_permalink() ?>" rel="<?php _e("bookmark", "solostream"); ?>" title="<?php _e("Permanent Link to", "solostream"); ?> <?php the_title(); ?>"><?php the_post_thumbnail( \'homepage-thumb\' ); ?></a>
<br><strong><?php the_title(); ?><strong><br>
<?php the_field(\'price\'); ?>
<div style="clear:both;"></div>
<?php $count2++; } ?>
<?php endforeach; ?>
</div>
<div id="column2">
<?php $posts = get_posts(\'cat=3&numberposts=5&offset=5\'); foreach ($posts as $post) : start_wp(); ?>
<?php static $count2 = 0; if ($count2 == "5") { break; } else { ?>
<a href="<?php the_permalink() ?>" rel="<?php _e("bookmark", "solostream"); ?>" title="<?php _e("Permanent Link to", "solostream"); ?> <?php the_title(); ?>"><?php the_post_thumbnail( \'homepage-thumb\' ); ?></a>
<br><strong><?php the_title(); ?><strong><br>
<?php the_field(\'price\'); ?>
<div style="clear:both;"></div>
<?php $count2++; } ?>
<?php endforeach; ?>
</div>