Skip to content

[job_post_feed]

The [job_post_feed] shortcode renders all active job posts using a customizable HTML template.

Add to any WordPress page or post:

[job_post_feed]

The feed uses an HTML template with {{ field }} placeholders that are replaced with job data. Edit the template from RecMan Jobs > Shortcode in the admin dashboard.

<a href="{{ permalink }}" class="job-post-item">
<div class="job-post-top">
<img src="{{ logo }}" />
<div class="job-post-title">
<p>{{ name }}</p>
<h3>{{ title }}</h3>
</div>
</div>
<div class="job-post-tags">
<span class="job-post-tag">{{ workplace }}</span>
<span class="job-post-tag">{{ type }}</span>
<span class="job-post-tag">{{ deadline }}</span>
</div>
</a>

Any available field can be used as a placeholder. Common ones:

PlaceholderDescription
{{ title }}Job title
{{ name }}Job post name
{{ excerpt }}Auto-generated excerpt (~200 characters)
{{ permalink }}Link to the individual job page
{{ workplace }}Workplace/location
{{ type }}Employment type (full-time, part-time, etc.)
{{ deadline }}Application deadline
{{ logo }}Company logo URL
{{ companyName }}Company name
{{ sector }}Industry sector
{{ apply }}Direct link to the application form

Add custom CSS from the same Shortcode tab in the admin. The styles are scoped to the shortcode output and only loaded on pages where the shortcode is used.