Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active October 6, 2017 14:19
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/883456b4593ae313e041926fecaa1049 to your computer and use it in GitHub Desktop.
Save mgibbs189/883456b4593ae313e041926fecaa1049 to your computer and use it in GitHub Desktop.
Pass the language code when preloading (WPML, Polylang)
<?php
// Add the following
add_filter( 'facetwp_render_params', function( $params ) {
if ( isset( $params['is_preload'] ) && defined( 'ICL_LANGUAGE_CODE' ) ) {
$params['http_params']['lang'] = ICL_LANGUAGE_CODE;
}
return $params;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment