Title: Specifying listing categories
Last modified: August 22, 2016

---

# Specifying listing categories

 *  Resolved [shwerziell](https://wordpress.org/support/users/shwerziell/)
 * (@shwerziell)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/specifying-listing-categories/)
 * How could I specify a category? For example, using the standard wordpress category
   I use:
 * `<?php if ( in_category( 'vagas' )) { ?>`
 * How I could do this using the plugin?
 * Something like:
 * `<?php if ( job_listing_category( 'vagas' )) { ?>`
 * I did not find the answer in the documentation. Could you help me?
 * [https://wordpress.org/plugins/wp-job-manager/](https://wordpress.org/plugins/wp-job-manager/)

Viewing 1 replies (of 1 total)

 *  [Scott Basgaard](https://wordpress.org/support/users/scottbasgaard/)
 * (@scottbasgaard)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/specifying-listing-categories/#post-5584091)
 * You’ll want to check for the taxonomy ‘job_listing_category’ so you could use
   has_term:
 *     ```
       <?php if ( has_term( 'vagas', 'job_listing_category' ) ) { ?>
           <?php // Do something… ?>
       <?php } ?>
       ```
   
 * [http://codex.wordpress.org/Function_Reference/has_term](http://codex.wordpress.org/Function_Reference/has_term)

Viewing 1 replies (of 1 total)

The topic ‘Specifying listing categories’ is closed to new replies.

 * ![](https://ps.w.org/wp-job-manager/assets/icon-256x256.gif?rev=2975257)
 * [WP Job Manager](https://wordpress.org/plugins/wp-job-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-job-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-job-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-job-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-job-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-job-manager/reviews/)

## Tags

 * [category](https://wordpress.org/support/topic-tag/category/)
 * [single category](https://wordpress.org/support/topic-tag/single-category/)

 * 1 reply
 * 2 participants
 * Last reply from: [Scott Basgaard](https://wordpress.org/support/users/scottbasgaard/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/specifying-listing-categories/#post-5584091)
 * Status: resolved