Created
December 18, 2017 22:02
-
-
Save djrmom/782899192b4408f4f9dd29dbbc8a4119 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* convert state into region */ | |
add_filter( 'facetwp_index_row', function( $params, $class ) { | |
if ( 'region' == $params['facet_name'] ) { | |
$northwest = array( 'WA', 'OR', 'MT'); | |
$northeast = array( 'ME', 'VT', 'MA', 'NH' ); | |
$raw_value = $params['facet_value']; | |
if ( in_array( $raw_value, $northwest ) ) { | |
$params['facet_value'] = 'northwest'; | |
$params['facet_display_value'] = 'North West'; | |
} elseif ( in_array( $raw_value, $northeast ) ) { | |
$params['facet_value'] = 'northeast'; | |
$params['facet_display_value'] = 'North East'; | |
} | |
} | |
return $params; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment