How do I list the latest jobs in a particular category on a page?
I have several categories (UK jobs, Middle East Jobs, etc)
I know how to add the latest jobs:
------------------------
<?php
$args = jr_filter_form();
query_posts($args);
// call the main loop-job.php file
get_template_part( 'loop', 'job' );
?>
<?php jr_paging(); ?>
<?php wp_reset_query(); ?>
------------------------
but I need to have the latest jobs only showing a particular category.
I need to do this so each category has a different header so I can add a country graphic to each.
Anyone know how to do this?
Thank you!