
You can find job listings in a WordPress plugin by navigating to the plugin’s dedicated dashboard menu, typically labeled Jobs, Career, or Job Board, then selecting the submenu item named All Listings or Manage Jobs. This is the primary interface for viewing, editing, and managing all posted vacancies within your site.
Most recruitment-focused WordPress plugins store job listings as a custom post type, separate from regular posts and pages. For instance, a plugin like WP Job Manager organizes listings under a top-level menu called Job Listings in your admin sidebar. Once clicked, you will see a table displaying job title, company name, location, status (expired, filled, or active), and the date posted. You can filter this table by status, search by keyword, or sort columns to quickly locate a specific role.
If you are using a plugin bundled with a theme (like those from niche career site builders), the path may be slightly different. Some themes hide the job listing editor under a Theme Options or Custom Post Types metabox. A quick way to verify is to check your plugin’s settings page for a Documentation tab or look under WordPress Admin > Posts > All Posts and see if a new post type was added — many plugins label this simply as “Jobs” in the top admin bar.
To ensure you never lose track of where listings are stored, I recommend creating a custom Taxonomy (e.g., “Department” or “Job Category”) within the plugin. This makes browsing listings by group more intuitive, especially when you have 20+ open roles. Below is a quick reference I use when training new hiring managers:
| Plugin Type | Typical Menu Location | Submenu for Listings |
|---|---|---|
| WP Job Manager | Job Listings | All Listings |
| Simple Job Board | SJB | All Jobs |
| Jobify/Theme Bundles | Jobs | Manage Jobs |
| Custom Built with ACF | Custom Post Types | Jobs (under Post Types) |
The key takeaway is: always look for a custom post type label specific to jobs. If you cannot see a menu, verify that the plugin is activated and has not been hidden via user role permissions.

Honestly, I just head straight to the left sidebar of my WordPress dashboard and find the plugin’s own icon, which is usually a briefcase or a clipboard. If the plugin is well-made, clicking that shows a “Listings” option. For example, if I’m using JobRoller, there’s a menu item called “Jobs” and inside it a sub-item literally named “Current Listings.” It’s that simple. If you still can’t see it, try typing “job” in the search bar at the top of your dashboard. That trick has saved me a ton of time.

I prefer to manage listings via the frontend dashboard most modern plugins offer. In the plugin settings, I enable a “Submit Job” page, and then I assign user roles so internal recruiters can edit their own posts. In that case, the listings are accessible under My Account > My Job Listings on the frontend of the site. The plugin handles the backend storage automatically, so I rarely peek at the admin area. It’s cleaner for team collaboration.

From a developer’s perspective, the most reliable spot is under Custom Post Types in the admin menu. Many plugins like Simple Job Board or Careerfy register a post type called “job_listing” or “post-job.” If the plugin doesn’t show a visible menu, check your Screen Options tab on the All Posts page and enable the “job_listing” post type. Alternatively, run a quick SQL query in phpMyAdmin to see the wp_posts table where post_type equals the plugin’s job type. That’s not for everyone, but it works every time.

When I started using a plugin for our corporate careers page, I discovered listings are often tucked away under Job Board > All Listings but also duplicated in Settings as a “Preview.” I now pin the “All Listings” submenu using the Admin Menu Editor plugin so my team can find it fast. Another tip: if the plugin is lightweight, it might list jobs under WordPress Admin > Posts > Jobs by default. The best way to confirm is to visit the plugin’s support forum with your specific version number. They can give you the exact path in seconds.


