Skip to content

Instantly share code, notes, and snippets.

@styledev
Created November 15, 2024 16:24
Show Gist options
  • Save styledev/563112a5cb49a1d4704168935c8cd4f2 to your computer and use it in GitHub Desktop.
Save styledev/563112a5cb49a1d4704168935c8cd4f2 to your computer and use it in GitHub Desktop.
Fix issues between FacetWP with a custom (e.g. not main query) WP_Query and Theme My Login
<?php
add_filter('facetwp_is_main_query', filter_facetwp_is_main_query, 10, 2 );
function filter_facetwp_is_main_query( $is_main_query, $query ) {
if ( 'template' == $query->get('post_type') ) $is_main_query = FALSE;
return $is_main_query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment