Skip to content

Instantly share code, notes, and snippets.

@anil3a
Created July 14, 2017 02:58
Show Gist options
  • Save anil3a/065ce80771f596385d8a5a9ae84ec26b to your computer and use it in GitHub Desktop.
Save anil3a/065ce80771f596385d8a5a9ae84ec26b to your computer and use it in GitHub Desktop.
Adding a filter to add extra custom fields for Wp Job Manager Search query job submission
// Adding a filter to add extra custom fields for Wp Job Manager Search query job submission.
add_filter( 'job_listing_searchable_meta_keys' , 'add_my_custom_post_meta_fields_here');
function add_my_custom_post_meta_fields_here( $wp_job_search_fields )
{
return array_push( $wp_job_search_fields, "_job_Contact_Name");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment