Display post from category wise in wordpress custom theme

Do you want to display recent posts from a specific category on your WordPress site? Filtering posts by category allows you to show more relevant recent posts, which can help to reduce bounce rate and increase pageviews.

category.php

<header> 
  <?php get_header(); ?> 
</header> 

<div class="card"> 
  <?php 
     if ( have_posts() ) : 
       while( have_posts() ) : the_post(); 
   ?> 

<h1> 
  <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h1> 

  <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'thumbnail' ); ?> </a> 

  <p><?php the_excerpt(); ?></p> 
 
  <?php endwhile; endif; ?> 
</div> 

wp_pagenavi(); // add this function

<footer> 
  <?php get_footer(); ?> 
</footer>

 

 

 

Leave a Reply