<?php
add_filter( 'facetwp_filtered_post_ids' function( $post_ids, $class ) {
$class->is_search = false; // prevent changing orderby
return $post_ids;
}, 10, 2 );
Code snippets for FacetWP
<?php
add_filter( 'facetwp_filtered_post_ids' function( $post_ids, $class ) {
$class->is_search = false; // prevent changing orderby
return $post_ids;
}, 10, 2 );