Relevanssi - markhowellsmead/helpers GitHub Wiki

Allow Relevanssi to be used in REST API results

https://wordpress.org/support/topic/using-relevanssi-in-the-rest-api/

add_action('init', function () {
	remove_filter('rest_api_init', 'relevanssi_rest_api_disable');
}, 11);
		
$post_type = 'shp_vacancy';
add_filter("rest_{$post_type}_query", function ($args) {
	$args['relevanssi'] = true;
	return $args;
});