Greenhouse Job Board
by brownbagmarketing 4.2 (5 reviews)

Greenhouse Job Board

Plugin to pull a job board from greenhouse.io via their API.

Greenhouse Job Board ranks #12,878 among WordPress.org plugins with 200+ active installations, a 4.2/5 rating from 5 reviews, and was last updated Apr 3, 2018. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 4.9 (Current: 7.1)
v2.7.3 Current Version v2.7.3
Updated 8 years ago Last Update on 03 Apr, 2018
Refreshed 9 hours ago Last Refreshed on
Top 25% by installs No update in over a year
View on WordPress.org
Rank
#12,878
-10 this week
Active Installs
200+
-8.3%
KW Avg Position
68
No change
Downloads
9.9K
+1 today
Support Resolved
0%
No change
Rating
84%
Review 4.2 out of 5
4.2 (5 reviews)

Next Milestone 300

Total Progress 15%
200+ 300+
1,682
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 85 more installs to reach 300+

Rank Changes

12,842 12,852 12,863 12,873 12,883 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
12,738 12,790 12,843 12,896 12,948 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Current #12,878
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
0 10 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.2
5 reviews
Overall 84%
5
4 (80%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
1 (20%)

Security History

Source: WPVulnerability

1 known vulnerability on record · 1 in the last 24 months · checked 1 month ago

  1. UNPATCHED

    Greenhouse Job Board [greenhouse-job-board] <= 2.7.3 (unfixed)

    CVE-2025-67633 · No fix released

Track This Plugin

Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.

Start Tracking Free

Plugin Details

Version
2.7.3
Last Updated
Apr 03, 2018
Requires WP
3.0+
Tested Up To
4.9
PHP Version
N/A

Support & Rating

Rating
★ ★ ★ ★ ☆ 4.2
Reviews
5
Support Threads
0
Resolved
0%

Keywords

Upgrade to Pro

Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.

Upgrade Now

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners who use Greenhouse.io to manage job listings. It lets them pull and display their Greenhouse job board on a WordPress page or post via a shortcode, with filtering, sorting, and grouping options.

  • Shortcode-based job board display
  • Department filtering
  • Job filtering
  • Office filtering
  • Location filtering
  • Hide application forms option
  • Sort jobs by attribute
  • Group jobs by department/office/location

Frequently Asked Questions

Common questions about Greenhouse Job Board

Yes, this plugin requires that you have a greenhouse.io account. You will need to enter your url token as well as your API key. Server requirements If you desire inline forms rather than iframe forms, to submit applications to the greenhouse API the web server must support cURL since it is used for the proxy data submission as to not expose your API key to the public.
Yes, you can add your own custom CSS on the plugin options page.
This plugin connects to Greenhouse to retreive data and saves it locally in your WordPress database for a while so your site will load faster and not have to wait for Greenhouse API everytime your job board loads. Go to the settings page and check your cache expiration setting to see how long this temporary or transient data will be stored locally, and also notice the checkbox option to clear the cache. To force fresh data to your site, check this box and save changes.
Yes, there is a php filter in place for after the job title on the full job listing template. It is called: ghjb_single_job_template_after_title. Place a function with this name into your theme functions file or your theme plugin php and you may add content following the title of each job. Note that this refers to the full job display and not the job list display. Here's a simple example usage: add_action('ghjb_single_job_template_after_title', 'add_note_to_single_job_template', 10, 1); function add_note_to_single_job_template ($html){ $html .= '<h2>Job Subtitle</h2>'; $html .= '<a href="#facebook-share-url">Share this job with friends</a>'; return $html; }
You can add your own content or edit the job excerpt on the job board via a javascript hook. This works much in the same way as a WordPress hook, but it's javascript based rather than php. Simply add a javascript function to your site named: ghjb_excerpt_filter and it will automatically be called and executed as the plugin creates the job board list. Here's an example use to trim the excerpt to 100 characters and add an ellipsis.: //greenhouse job board plugin js filters function ghjb_excerpt_filter(content) { var short_content_start = 0; var short_content_end = 100; var new_content = content.substring(short_content_start, short_content_end) + ' &hellip;'; return new_content; }
You can customize the inline forms, but not the iframe forms. There is a hook available for use via javascript to filter the fields on inline forms called ghjb_questions_filter. Call it in your theme or plugin javascript. It will receive as parameter the array of questions as returned by the greenhouse api for each job and your filter must return a similarly formatted array of questions, but you may rearrange the fields or change labels field types, etc. Here's an example use that customizes some fields: function ghjb_questions_filter( questions ) { //find field indexes var remove_index, coverletter_index, resume_index; for ( var i = 0; i < questions.length; i++){ if ( questions[i].label === 'Resume' ) { resume_index = i; } if ( questions[i].label === 'Cover Letter' ) { coverletter_index = i; } if ( questions[i].label === 'Remove Me' ) { remove_index = i; } } //remove field questions.splice(remove_index,1); //set default file_input type to textarea rather than file upload questions[coverletter_index].fields.reverse(); //change label questions[coverletter_index].label = "Updated Cover Letter Label"; //move to last field var coverletter_question = questions.splice(coverletter_index, 1); questions.push ( coverletter_question[0] ); var resume_question = questions.splice(resume_index, 1); questions.push ( resume_question[0] ); //return customized questions array return questions; }
There is a javascript hook you can add to your theme code that will work here. The function is ghjb_after_thanks and is called after the thank you message is processed and displayed on the page.

Sign In / Register

You need to sign in or register to use this feature.