我有一个指向该类别中最新帖子的href链接。简单的代码。就是这样:
https://www.my-site.com/category/computers/?latest
太好了。这样可行。但是偏移量呢?我不希望最新的帖子,而想要该类别中的前一篇帖子。
所以我有我的代码来调用偏移量:
<?php $args = array(
'post_type' => 'post',
'offset' => '1',
'category_name' => 'computers',
'posts_per_page' => '1',
);
$querybest = new WP_Query( $args ); ?>
<?php while ($querybest -> have_posts()) : $querybest -> the_post(); ?>
<a href="https://www.my-site.com/category/computers/?latest" title="Computers">
<div class="feature">
<figure class="fixedratio" style="background: url('<?php echo wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ); ?>');"></figure>
</div>
</a>
<?php the_excerpt(); ?>
<?php endwhile; ?>
因此,这将显示前一个帖子的特色图片,而不是最近的帖子,但它不会链接到正确的帖子。如何纠正这个问题并获取偏移量以使链接正常运行?