Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
mgibbs189 / test.php
Last active November 4, 2015 16:51
FacetWP - prevent EDD wish list query
<?php
// Todo: change "edd_wish_list" to the correct post type
function fwp_ignore_edd_wishlist_query( $is_main_query, $query ) {
if ( isset( $query->query_vars['post_type'] && 'edd_wish_list' == $query->query_vars['post_type'] ) ) {
$is_main_query = false; // ignore the EDD Wish List query
}
return $is_main_query;
}
add_filter( 'facetwp_is_main_query', 'fwp_ignore_edd_wishlist_query', 10, 2 );