Title: theDodder's Replies | WordPress.org

---

# theDodder

  [  ](https://wordpress.org/support/users/thedodder/)

 *   [Profile](https://wordpress.org/support/users/thedodder/)
 *   [Topics Started](https://wordpress.org/support/users/thedodder/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thedodder/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thedodder/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thedodder/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thedodder/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thedodder/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Job Manager] Listing categories in seperate page](https://wordpress.org/support/topic/plugin-job-manager-listing-categories-in-seperate-page/)
 *  [theDodder](https://wordpress.org/support/users/thedodder/)
 * (@thedodder)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-job-manager-listing-categories-in-seperate-page/#post-1453619)
 * Thanks a lot! That’s superb!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Job Manager] Listing categories in seperate page](https://wordpress.org/support/topic/plugin-job-manager-listing-categories-in-seperate-page/)
 *  [theDodder](https://wordpress.org/support/users/thedodder/)
 * (@thedodder)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/plugin-job-manager-listing-categories-in-seperate-page/#post-1453617)
 * Hi
 * I’m using code similar to the code above, but I’m also wanting to display the
   number of jobs in each category. To do this, I’ve used **$cat->count**, which
   worked fine initially, but I noticed a problem.
 * When an application is made for a job, the **$cat->count** is increased by one
   here. Is there a way you can think of that I could just show the number of jobs
   in the category? Here is the code in essence of what I have now…
 *     ```
       $categories = get_terms( 'jobman_category', 'hide_empty=0' );
       foreach( $categories as $cat ) {
       $count = ' (' . $cat->count . ')';
       echo "<li><a href='" . get_term_link( $cat->slug, 'jobman_category' ) . "'>$cat->name<span>$count</span></a></li>";
       }
       ```
   
 * Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)