Resume Listing Shortcode
[jobmate_resume_listing] outputs a grid or list of resumes anywhere on your site. It requires the WP Job Manager Resumes plugin; if that plugin is inactive, the shortcode renders nothing.
Basic usage
Section titled “Basic usage”[jobmate_resume_listing]Permissions
Section titled “Permissions”The shortcode respects WP Job Manager Resumes’ browse permission. If the current visitor cannot browse resumes, the plugin’s “access denied” template is shown instead of the list.
Attributes
Section titled “Attributes”| Attribute | Default | Description |
|---|---|---|
per_page |
WP Job Manager Resumes per-page option | Number of resumes to show. |
order |
DESC |
Sort direction, ASC or DESC. |
orderby |
featured |
Field to order by. |
categories |
(empty) | Comma-separated list of resume category slugs or IDs to filter by. |
featured |
(none) | Set to 1, true, or yes to show only featured resumes. |
resume_list_layout |
resume-list-default-view |
Overall layout. Accepts resume-list-default-view, resume-list-grid-view, or resume-list-card-view. |
resume_grid_layout |
(empty) | Grid sub-template. Accepts resume-list-grid-view-1, resume-list-grid-view-2, or resume-list-grid-view-3. |
per_row |
(auto) | Items per row. Defaults to 1 for list, 2 for grid, 4 for card when not set. |
enable_slider |
false |
Renders the results as a slider. |
Examples
Section titled “Examples”A four-column card grid of featured resumes:
[jobmate_resume_listing resume_list_layout="resume-list-card-view" featured="true" per_row="4"]Resumes from specific categories in grid sub-layout three:
[jobmate_resume_listing resume_list_layout="resume-list-grid-view" resume_grid_layout="resume-list-grid-view-3" categories="engineering,design"]- Keyword and location query-string values are read into the wrapper’s data attributes so front-end search stays in sync.
- Developers can change the defaults with the
jobmate_resume_manager_output_resumes_defaultsfilter and the query withresume_manager_output_resumes_args.

