Created
January 6, 2017 12:48
-
-
Save woutersf/8b800e323d129e543791ae8d3d64817f to your computer and use it in GitHub Desktop.
drupal8 render field value in twig
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
//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