这可能是一个愚蠢的问题,但我很难在谷歌上找到答案。我的网站有一个部分加载了4个div,其中包含一个帖子标题、摘录和指向完整帖子的“阅读更多”链接。在这4个分区下,我有3个链接,一个是“查看全部”。它需要加载一个包含所有该类型帖子的页面。有谁能给我一些关于如何做到这一点的建议吗?谢谢
HTML:
<div class="news-events group">
<div class="col1">
<h1>News & Press Releases</h1>
<?php query_posts(\'post_type=issues&posts_per_page=4\'); ?>
<?php $i = 1; ?>
<?php while (have_posts()) : the_post(); ?>
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), \'full_size\' );
$url = $thumb[\'0\']; ?>
<div class="post-container container-<?php echo $i; ?>" style="background-image:url(\'<?=$url?>\');">
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">Read More ></a>
</div>
<?php $i++ ?>
<?php endwhile; wp_reset_query(); ?>
<div class="navigation">
<ul>
<a href="#"><li>View All</li></a>
<a href="get-involved"><li class="gi">Get Involved</li></a>
<a href="#"><li>Next Page</li></a>
</ul>
</div>
</div>