Easily display published jobs from Recruitee anywhere with shortcode.
It’s never been easier to display your public Recruitee jobs on your WordPress site. With a simple shortcode that you can use in the editor, in widgets or even in your template files, you can embed your job offers anywhere.
Example:
[recruitee-jobs company="yourcompany"]
Display mode: There are two modes available for displaying the jobs. “tiles” displays the jobs as tiles, which is particularly suitable for displaying an excerpt of the job description. “list” displays the jobs in a clear list, which is particularly suitable for ensuring a quick overview of all open jobs. Default: “tiles”
mode="list"
Department filtering: Show only jobs from a specific department. Default: “” (empty)
department="UX"
Tag filtering: show only jobs with a specific tag. Default: “” (empty)
tags="Master,Thesis"
Custom Links: Set the URL to which the jobs link to. Default: “https://yourcompany.recruitee.com”
url="https://example.com/jobs"
Language selection: Choose the language of the displayed texts. Default: “” (empty)
language="de"
Text Preview Word Length: Choose if and how many words the job description should display. Default: “55”
preview_size="35"
Custom Suffix Text: Determine what text should be displayed after the shortened description, if it was longer than the preview length. Default: “…”
more="[...]"
Raw or HTML: You can choose whether to use the HTML text of the job ad or a simple text excerpt without HTML. Default: “0” (disabled)
raw="1"
Origin Tracking: You can simply add a source to track where the candidates applying come from. Default: “” (empty)
source="yourcompany.tld"
Display location: Display the job location before the description. Default: “1” (enabled)
show_location="0"
Display tags: Display the job tags before the description. Default: “1” (enabled)
show_tags="0"
First you have to replace the company tag value by your Recruitee Careers Site subdomain. The scheme looks like this: https://
yourcompany
.recruitee.com
Where yourcompany
is your Recruitee subdomain. You can usually find this in your Recruitee administration interface.
In the visual editor you can simply add a new Shortcode block by clicking on the [+] icon.
Then search for Shortcode
and click on it. Next you add your own recruitee shortcode in the input field
(e.g.: [recruitee-jobs company="
yourcompany
"]
).
That´s it! 🙂
Just as all shortcodes work, Jobs from Recruitee also offers the possibility to customize the default behavior of the output. For each of the features listed above, an example is given to change the corresponding behavior. Just add the parameter you want to change to your personal shortcode at the end. For example, if you want to disable the job location output, your shortcode would look like this:
[recruitee-jobs company="yourcompany" show_location="0"]
Just override the css classes that are used in this plugin. Follow the CSS Cascade to find your best solution https://wattenberger.com/blog/css-cascade
For example you could change the background color of the box:
.recruitee-jobs-container article.recruitee-job { background: #dcff8c; }
Or the text color of the title:
.recruitee-jobs-container a { color: #322d7e; }