Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created February 2, 2017 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/bd5937ff08d59835faf5bf4b28933c29 to your computer and use it in GitHub Desktop.
Save mgibbs189/bd5937ff08d59835faf5bf4b28933c29 to your computer and use it in GitHub Desktop.
FacetWP - force is_search = false
<?php
add_filter( 'facetwp_filtered_post_ids' function( $post_ids, $class ) {
$class->is_search = false; // prevent changing orderby
return $post_ids;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment