JOB

<?php
/* 
Template Name: Job Category Posts
*/

get_header(); ?>

<div class="job-listings">
    <h2>Job Category Posts</h2>

    <?php
    // Query for posts in "job" category
    $args = array(
        'category_name' => 'job', // category slug
        'posts_per_page' => 10,   // kitne posts dikhane hain
    );

    $job_posts = new WP_Query($args);

    if ($job_posts->have_posts()) :
        while ($job_posts->have_posts()) : $job_posts->the_post(); ?>
            
            <div class="job-post">
                <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                <div><?php the_excerpt(); ?></div>
            </div>

        <?php endwhile;
    else :
        echo "<p>No job posts found.</p>";
    endif;

    wp_reset_postdata();
    ?>
</div>

<?php get_footer(); ?>