category mapping: use sub slices of mobilizon cats for search
Some checks are pending
Deploy to https://wordpress-test.event-federation.eu/ / deploy (push) Waiting to run

This commit is contained in:
André Menrath 2024-01-05 12:48:23 +01:00
parent e64023907a
commit 1666fba8b9

View file

@ -165,12 +165,14 @@ class VS_Event extends Post {
// Check for the best match. // Check for the best match.
foreach ( $mobilizon_categories as $mobilizon_category ) { foreach ( $mobilizon_categories as $mobilizon_category ) {
foreach ( $category_info as $category ) { foreach ( $category_info as $category ) {
if ( stripos( $category, $mobilizon_category ) !== false ) { foreach ( explode( '_', $mobilizon_category ) as $mobilizon_category_slice ) {
// Check if the current match is longer than the previous best match. if ( stripos( $category, $mobilizon_category_slice ) !== false ) {
$current_match_legnth = strlen( $mobilizon_category ); // Check if the current match is longer than the previous best match.
if ( $current_match_legnth > $best_match_length ) { $current_match_legnth = strlen( $mobilizon_category_slice );
$best_mobilizon_category_match = $mobilizon_category; if ( $current_match_legnth > $best_match_length ) {
$best_match_length = $current_match_legnth; $best_mobilizon_category_match = $mobilizon_category;
$best_match_length = $current_match_legnth;
}
} }
} }
} }