Created
October 28, 2015 15:06
-
-
Save hdytsgt/b3e2bca5d6ad1bffd385 to your computer and use it in GitHub Desktop.
Supress Soliloquy featured content slider to use selected language (WPML)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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