Last active
July 13, 2018 21:53
-
-
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.
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
| $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