簡體   English   中英

在類別頁面 Wordpress 中顯示帖子列表

[英]Show a list of posts in category page Wordpress

所以基本上我試圖顯示一個類別頁面的帖子列表。 我需要動態地進行,因此每個類別頁面都有自己的帖子列表。 我最終得到了這個代碼,但它顯示了所有類別的所有帖子。

 <?php $lastposts = get_posts(array( 'posts_per_page' => 5 )); if ($lastposts) { foreach ($lastposts as $post): setup_postdata($post); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php endforeach; wp_reset_postdata(); } ?>

我剛剛找到了解決方案

 <div class="entry-content"> <div class=" my-5"> <h2><a href="<?php the_permalink(); ?>" class="section-heading__title" rel="noopener"> <?php the_title(); ?> </a></h2> <div> <div class="attachment__description my-2"><?php echo get_the_excerpt(); ?></div> <hr/> <span class="uppercase">Published on <?php echo get_the_date(); ?></span> <span><?php echo site_posted_by();?></span> </div> </div> </div><!-- .entry-content -->

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM