Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save woutersf/8b800e323d129e543791ae8d3d64817f to your computer and use it in GitHub Desktop.
Save woutersf/8b800e323d129e543791ae8d3d64817f to your computer and use it in GitHub Desktop.
drupal8 render field value in twig
//render all content without a specific field
{{ content.without('field_name') }}
//render only one specific field
{{ content.field_audio_file }}
//render only one specific field's value
{{ content.field_audio_file.value }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment