gpt4 book ai didi

php - WordPress:第一篇完整文章,其他显示摘录

转载 作者:行者123 更新时间:2023-12-05 01:03:04 26 4
gpt4 key购买 nike

我已经设置了一个 WordPress 模板来完整显示第一个帖子,其他的则作为摘录:http://growthgroup.com/testing-blog

当您转到帖子的第 2 页时,它会完整显示第一个帖子,其他帖子也显示为摘录,但我只希望最近的帖子是完整的帖子,而所有其他帖子都是摘录。

有没有办法解决这个问题?这是我正在使用的代码:

<?php 
// query to set the posts per page to 5
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array('posts_per_page' => 5, 'paged' => $paged );
query_posts($args); ?>

<?php if (have_posts()) : ?>
<?php $postcount = 0; // Initialize the post counter ?>
<?php while (have_posts()) : the_post(); //start the loop ?>
<?php $postcount++; //add 1 to the post counter ?>


<?php if ($postcount == 1) : // if this is the first post ?>
<div class="post">
<h3 class="post-title"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title(); ?></a></h3>
<span class="author-date-blog"><?php the_author();?> | <?php the_date('d M Y');?></span>
<div class="excerpt">
<?php the_content();?>
<div class="read-more">
<a href="<?php the_permalink();?>#disqus_thread">Leave a Comment >></a>
</div>
</div>
</div>



<?php else : //if this is NOT the first post ?>
<div class="post">
<div class="thumb">
<a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_post_thumbnail('blog-thumb');?></a>
</div>
<h3 class="post-title"><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title(); ?></a></h3>
<span class="author-date-blog"><?php the_author();?> | <?php the_date('d M Y');?></span>
<div class="excerpt">
<?php the_excerpt(); ?>
<div class="read-more">
<a href="<?php the_permalink();?>">Read More >></a>
</div>
</div>
</div>
<?php endif; endwhile; //end of the check for first post - other posts?>

最佳答案

如果我理解正确,我认为这可能会满足您的要求:

<?php if ($postcount == 1 && $paged == 1) : // if this is the first post & first page ?>

这应该只在第一页的第一个帖子上触发上部条件。

关于php - WordPress:第一篇完整文章,其他显示摘录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19230265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com