<?php
// Adds FacetWP compatibility to the Avada theme's Blog element.
// For this to work, the Blog listing also needs a 'facetwp-template' class.
add_filter( 'fusion_blog_shortcode_query_args', function( $query_args ) {
$query_args['facetwp'] = true;
return $query_args;
}, 10 );