Files
medicalalert-web-reloaded/wp/wp-content/plugins/relevanssi-premium/lib/compatibility/avada.php
Tony Volpe 779393381f Merged in feature/plugins-update (pull request #9)
wp plugin updates from pantheon

* wp plugin updates from pantheon
2023-12-15 18:08:21 +00:00

20 lines
370 B
PHP

<?php
/**
* /lib/compatibility/avada.php
*
* Avada theme compatibility features.
*
* @package Relevanssi
* @author Mikko Saari
* @license https://wordpress.org/about/gpl/ GNU General Public License
* @see https://www.relevanssi.com/
*/
add_filter(
'fusion_live_search_query_args',
function( $args ) {
$args['relevanssi'] = true;
return $args;
}
);