Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function mymodule_views_query_alter(&$view, &$query) {
  2. if ($view->name == 'yourviewmachinename') {
  3. $query->where[] = array(
  4. 'conditions' => array(array(
  5. 'field' => 'taxonomy_term_data.language',
  6. 'value' => array('***CURRENT_LANGUAGE***'),
  7. 'operator' => 'in',
  8. )),
  9. 'args' => array(),
  10. 'type' => 'AND',
  11. );
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement