Add a job post feed
# Making sure the plugin is active and that job posts are available
if( function_exists('have_jobposts') && have_jobposts() ) :
# loop through each job posts
while( have_jobposts() ) : the_jobpost();
# Print the job post title
the_jobpost('title');
endwhile;
else :
echo "No job posts available.";
endif;
?>Additional options
Limit number of jobs in feed
Reset loop - If adding multple loops on your WordPress site.
Check out our starter template
Job Post Feed TemplateLast updated