How to get Category wise Post in WordPress?

<?php
$catquery = new WP_Query( array( 'post_type' => '', 'category_name'=>'Cricket','posts_per_page' => 10 ) );
while($catquery->have_posts()) : $catquery->the_post();
?>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<?php the_content(); ?>
<?php endwhile; ?>

Cricket is Category Name

administrator

Leave a Reply

Your email address will not be published. Required fields are marked *