// Create a custom function to display posts from ‘kahani’ category
function show_kahani_slider() {
ob_start();
?>
‘kahani’, // category slug
‘posts_per_page’ => 5 // number of posts to display
);
$query = new WP_Query($args); // WP_Query to fetch posts
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
?>