How to show Last Posts of Specific Category.

Category

Make your WordPress website with specific category and show how much post per page in specific category.

How to add specific category

first of all open your WordPress active theme folder and paste this code where you want show specific category post.

<?php
// the query
$the_query = new WP_Query(array(
'category_name' => 'ENTER_NAME',
'post_status' => 'publish',
'posts_per_page' => 5,
));
?>

<?php if ($the_query->have_posts()) : ?>
<?php while ($the_query->have_posts()) : $the_query->the_post(); ?>
<?php the_category(); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php the_post_thumbnail(); ?>
<?php the_content(); ?>

<?php endwhile; ?>
<?php wp_reset_postdata(); ?>

<?php else : ?>
<p><?php __('No News'); ?></p>
<?php endif; ?>

Hope you can understand this article. If you have any other question in your mind so contact me by mail.