Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zuhairkareem/3d5ca244c20617a39d0ac9a8a5c19111 to your computer and use it in GitHub Desktop.
Save zuhairkareem/3d5ca244c20617a39d0ac9a8a5c19111 to your computer and use it in GitHub Desktop.
Get field data from entity in D8
$entity_st = \Drupal::entityManager()->getStorage('entity_name');
$entity_obj = $entity_st->load(entity_id);
$field_value = $entity_obj->get('field_name')->value;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment