Skip to content

Instantly share code, notes, and snippets.

@init90
Last active July 13, 2018 21:53
Show Gist options
  • Select an option

  • Save init90/873094f152aef58e7314f114c216e77b to your computer and use it in GitHub Desktop.

Select an option

Save init90/873094f152aef58e7314f114c216e77b to your computer and use it in GitHub Desktop.
Drupal 7, get all commerce products which have certain taxonomy term. In this case term with id: 52.
$query = new EntityFieldQuery();
$result = $query->entityCondition('entity_type', 'commerce_product')
->fieldCondition('field_brand', 'tid', 52)
->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment