Skip to content

Instantly share code, notes, and snippets.

@hdytsgt
Created October 28, 2015 15:06
Show Gist options
  • Save hdytsgt/b3e2bca5d6ad1bffd385 to your computer and use it in GitHub Desktop.
Save hdytsgt/b3e2bca5d6ad1bffd385 to your computer and use it in GitHub Desktop.
Supress Soliloquy featured content slider to use selected language (WPML)
/* Apply filter on Soliloquy query */
add_filter( 'soliloquy_fc_query_args', 'soliloquy_wpml', 10, 3 );
/* Force Soliloquy query to use selected language */
function soliloquy_wpml($query_args, $id, $data) {
$query_args['suppress_filters'] = 0;
return $query_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment