gschoppe
8/21/2018 - 10:54 PM

Add Featured Image Tag to Timber

Add Featured Image Tag to Timber

<?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;
});