Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jeremyescott/aa1f66435c562edd554b3ae6622d7776 to your computer and use it in GitHub Desktop.
Save jeremyescott/aa1f66435c562edd554b3ae6622d7776 to your computer and use it in GitHub Desktop.
Change the location field that sets the locations taxonomy.
/**
* Matador Location Taxonomy as "State"
*/
add_filter( 'matador_import_location_taxonomy_field', 'matador_import_location_taxonomy_field_set_state' );
function matador_import_location_taxonomy_field_set_state( $field ) {
return 'state';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment