Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $CTquery = Drupal::entityQuery('node')
  2. ->condition('status', 1)
  3. ->condition('type', 'article')
  4. ->condition('field_category.entity.name', ['cat1','cat2'], 'IN')
  5. ->sort('field_category_top', 'ASC') //minor sorting
  6. ->sort('field_featured', 'ASC') //major sorting
  7. ->range(0,10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement