Alphabetize Region List
-
As per the Listify theme documentation, I inserted the code below in order to alphabetize my region list. I’m getting a syntax error. If I could figure out how to search this forum, I’d seek an answer here because i’m sure this has come up before, but there are 47 pages of discussions. Is there a way to search this forum? What am I missing?
Anyway, here’s the code:
<?php
/**
* Plugin Name: WP Job Manager – Regions – Order Alphabetically
*/function custom_job_manager_regions_dropdown_args( $args ) {
$args[ ‘orderby’ ] = ‘name’;return $args;
}
add_filter( ‘job_manager_regions_dropdown_args’, ‘custom_job_manager_regions_dropdown_args’ );Please help!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Alphabetize Region List’ is closed to new replies.