Skip to content

Instantly share code, notes, and snippets.

@init90
Created July 1, 2019 08:43
Show Gist options
  • Save init90/10728f89e70c11b585055872af80fcc8 to your computer and use it in GitHub Desktop.
Save init90/10728f89e70c11b585055872af80fcc8 to your computer and use it in GitHub Desktop.
Drupal 7, create Search API query programatically.
$index = search_api_index_load('index_name');
$query = new SearchApiQuery($index);
$query->condition('type', 'blog', '=');
$results = $query->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment