WP Job Openings
Visit Website View Demo Get PRO
Search…
⌃K
Links
Introduction
Getting Started
Installation
Shortcodes
Pro Pack for Wp Job Openings
WP Job Openings Pro
Installation
Overview
Job Openings Overview
Settings
General
Appearance
Job Specifications
Form
Notifications
Settings - Wp Job Openings Pro
Appearance
Job Specifications
Form
Notifications
Shortcodes
Advanced
Job Listing
Add New Openings
Job Listings
Job Listings – Admin
Customizing templates of your Job Listings
Applications
Application Listings
Edit Application
Spam Protection
EXPORT (PRO)
Export Applications
Widgets
Recent Jobs Widget
Job Overview Dashboard Widget
Other Add-ons
Docs Viewer Add-On for WP Job Openings
Auto Delete Applications – Add-on for WP Job Openings
User Access Control Addon for WP Job Openings
User Access Control Add-on
Installation
Settings
Tutorial
Developers
Hooks
Code Snippets
Archive page title
Custom Application Status
Custom Permalink - Slug Issue
Limit the file size
Modify or Remove the Structured Data
Remove 'All' prefix from the filter
Remove job application form
Sort by title
WP-CLI
FAQ
Sources and Credits
Powered By GitBook

Sort by title

If you need to sort by title. Here's is the code to how to do it.
function awsm_job_custom_query_args( $args ) {
$args['order'] = 'ASC';
$args['orderby'] = 'title';
return $args;
}
add_filter( 'awsm_job_query_args', 'awsm_job_custom_query_args' );
​
​How to Easily Add Custom Code to Your WordPress Websites​
Previous
Remove job application form
Next - Developers
WP-CLI
Last modified 1yr ago
Copy link