You can use Elementor to handle this without using shortcodes but if you’re WordPress purist đ you can use several shortcodes to display jobs and forms. These are listed below.
The [jobs] shortcode outputs a list of your jobs
This shortcode takes the following arguments:
per_page
 â Defaults to the âper pageâ option in settings. This controls how many jobs get listed per page.orderby
 â Defaults to âfeaturedâ. Supports title, ID, name, date, modified, rand, featured, and rand_featured (random but keeps featured at top).order
 â Defaults to âdescâ. Can be set to âascâ or âdescâ to choose the sorting direction.show_filters
â shows native WP Job Manager filters above the job list but it’s recommended to disable them usingshow_filters="false"
show_pagination
 â Defaults to false. Enable this to show numbered pagination instead of the âload more jobsâ link.show_categories
 â Defaults to true when categories are enabled. If enabled, the filters will also show a dropdown letting the user choose a job category to filter by.categories
 â Comma separate slugs to limit the jobs to certain categories. This option overrides âshow_categoriesâ if both are set.job_types
 â Comma separate slugs to limit the jobs to certain job types.selected_job_types
 â Comma separate slugs to select by default.location
 â Enter a location keyword to search by default.keywords
 â Enter a keyword to search by default.featured
 â Set to true to show only featured jobs, false to show no featured jobs, or leave out entirely to show both (featured first).filled
 â Set to true to show only filled jobs, false to show no filled jobs, or leave out entirely to respect the default settings.post_status
 â Set to âpublishâ to display active jobs, set to âexpiredâ to show expired jobs.
If the URL of the page contains a query string and location or keywords is set, the values in the query string will populate the location and keywords fields instead of the above options.
Examples
Show 12 of the most recent jobs without filters and pagination:
[jobs per_page="12" show_filters="false"]
Show 20 jobs at a time, ordered by title, with categories disabled:
[jobs per_page="20" orderby="title" show_categories=false]