Job Feed - Overview
The Job Feed publishes all your live jobs as an XML feed at a fixed URL. Submit this URL to Indeed, LinkedIn, and other job aggregators to automatically syndicate your listings.
Feed URL
Section titled “Feed URL”https://yoursite.com/wcb-jobs.xmlThe feed is disabled by default. Enable it in Career Board → Settings → Job Feed.
Feed Format
Section titled “Feed Format”The feed uses the Indeed XML format, which is also accepted by Glassdoor, LinkedIn, and most other major job aggregators. The document root is a single <source> element that opens with two publisher fields, followed by one <job> element per published job.
Source-level fields
Section titled “Source-level fields”| Field | Source |
|---|---|
<publisher> |
Your site name (Settings → General → Site Title) |
<publisherurl> |
Your site home URL |
Per-job fields
Section titled “Per-job fields”Each <job> entry contains:
| Field | Source |
|---|---|
<title> |
Job post title |
<date> |
Publication date, RFC-822 GMT format |
<referencenumber> |
WordPress post ID |
<url> |
Public permalink |
<company> |
Company name meta field (_wcb_company_name) |
<city> |
First term from the wcb_location taxonomy |
<country> |
Always emitted, currently empty |
<description> |
Job description (HTML stripped, wrapped in CDATA) |
<salary> |
Formatted min-max range in the job’s own currency, e.g. $80,000 - $120,000 / yearly |
<jobtype> |
First term from the wcb_job_type taxonomy |
<email> |
Contact email from feed settings |
<expirationdate> |
Deadline meta field (_wcb_deadline) |
The salary uses each job’s stored currency symbol (USD, EUR, INR, JPY, etc.), not a hardcoded dollar sign, so multi-currency boards export the correct symbol to every aggregator.
Step 1: Enable the feed
Section titled “Step 1: Enable the feed”- Go to Career Board → Settings → Job Feed
- Toggle Enable Feed on
- The feed URL appears immediately below the toggle
Step 2: Set the contact email
Section titled “Step 2: Set the contact email”Enter the email address to include in the <email> field of every job entry. This is the address aggregators and candidates use to contact you about listings. It defaults to the WordPress admin email.
Step 3: Submit to Indeed
Section titled “Step 3: Submit to Indeed”- Log in to the Indeed Employer Portal
- Go to Integrations → Job Feed
- Enter your feed URL:
https://yoursite.com/wcb-jobs.xml - Indeed re-fetches the feed every 24 hours
Pagination
Section titled “Pagination”The feed returns up to 200 jobs per page (a safe default; Indeed accepts up to 1,000 per page). If you have more than 200 published jobs, append a start parameter to retrieve additional pages:
https://yoursite.com/wcb-jobs.xml?start=0 ← jobs 1–200https://yoursite.com/wcb-jobs.xml?start=200 ← jobs 201–400https://yoursite.com/wcb-jobs.xml?start=400 ← jobs 401–600Caching
Section titled “Caching”Each feed page is cached for one hour using WordPress transients, and the response sends a Cache-Control: public, max-age=3600 header so CDNs and aggregators can edge-cache it.
Cache invalidation is handled with a version number rather than deletion. Whenever any job is saved or updated, an internal feed version (the wcbp_feed_version option) is bumped. Because the transient key includes that version, the next request builds a fresh feed immediately while the old cached copies expire on their own after an hour. There is nothing to clear manually.
Disabling the Feed
Section titled “Disabling the Feed”Toggle Enable Feed off. The URL then serves your theme’s standard 404 page with an HTTP 404 status instead of XML. Aggregators that poll the URL will stop receiving new listings.

