Job Post Feed
The job post feed is the main way to display a list of all active job posts on your site.
Quick Start
Section titled “Quick Start”Add this shortcode to any WordPress page or post:
[job_post_feed]The plugin renders all jobs using a customizable HTML template. Edit the template and CSS from RecMan > Shortcode in the admin dashboard.
Shortcode Details Learn about the job post feed shortcode and template customization.
Add this to your theme template file:
<?php if (function_exists('have_jobposts') && have_jobposts()): ?>
<?php while (have_jobposts()): the_jobpost(); ?>
<a href="<?php echo get_jobpost('permalink'); ?>"> <h3><?php the_jobpost('title'); ?></h3> <p><?php the_jobpost('excerpt'); ?></p> <span><?php the_jobpost('workplace'); ?></span> <span><?php the_jobpost('deadline'); ?></span> </a>
<?php endwhile; ?>
<?php else: ?> <p>No job posts available.</p><?php endif; ?> Template Loop Details Learn about the template function loop and all available options.
Limit the Number of Jobs
Section titled “Limit the Number of Jobs”You can limit how many jobs are displayed by passing a count:
[job_post_feed count=10]<?php if (have_jobposts(10)): ?> <?php while (have_jobposts(10)): the_jobpost(); ?> <!-- Shows max 10 jobs --> <?php endwhile; ?><?php endif; ?>Show Job Count
Section titled “Show Job Count”Display the total number of jobs to visitors:
<?= get_jobpost_count() ?> open positionsAdd Filtering and Search
Section titled “Add Filtering and Search”Enhance your job feed with filtering and search capabilities.
Filtering and Search Learn about filtering and search capabilities.