Thread Starter
doyuk
(@doyuk)
Dear Mikko,
I added the code, but it didn’t work.
add_filter( 'relevanssi_match', 'custom_field_weights' );
function custom_field_weights( $match ) {
$featured = get_post_meta( $match->doc, '_sku', true );
if ( '1' === $featured ) {
$match->weight = $match->weight * 2;
} else {
$match->weight = $match->weight / 2;
}
return $match;
}
What could be the problem?
-
This reply was modified 7 years ago by doyuk.