Created
August 21, 2018 22:54
-
-
Save gschoppe/044a2f6aa2481f408357b28b20361a7f to your computer and use it in GitHub Desktop.
Add Featured Image Tag to Timber
This file contains 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
<?php | |
/* populates the twig tag {{ featured_image_tag }} */ | |
add_filter('timber_context', function( $context ){ | |
$context['featured_image_tag'] = get_the_post_thumbnail( null, 'full' ); | |
return $context; | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment