add region dropdown on main search page
-
Hi I’m trying to add a dropdown to the main page the searches region. I think I am very close, I’ve used the category search dropdown as a base. I have created the dropdown but can’t get it to search correctly. Do you have any idea what I’m doing wrong? My code is below. any help would be great. Cheers
<div class="col-md-3 col-sm-12"> <div class="search_region"> <label for="search_region"><?php _e( 'Region', 'wp-job-manager' ); ?></label> <?php wp_dropdown_categories( array( 'taxonomy' => 'job_listing_region', 'hierarchical' => 1, 'show_option_all' => __( 'All Job Regions', 'wp-job-manager' ), 'name' => 'search_region', 'orderby' => 'name' ) ); ?> </div> </div>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘add region dropdown on main search page’ is closed to new replies.