How to show blog post featured image using ‘content_by_id’
because it show only ‘Post Title’, 'Post Url ’ But not give featured Image
Or
How to bind blog post featured image using module field ‘page’
Blow are my code:
<div class=“artical-block large”>
<span class=“img-block”>
<img src=“{{ content_by_id(module.big_image_featured_blog.choose_featured_blog).featured_image }}” alt=“{{ content_by_id(module.big_image_featured_blog.choose_featured_blog).featured_image_alt_text }}”>
</span>
<div class=“content”>
<span class=“date”>{{content_by_id(module.big_image_featured_blog.choose_featured_blog).publish_date|datetimeformat(‘%A, %B %d, %Y’)}}</span>
<h3><a href=“{{ content_by_id(module.big_image_featured_blog.choose_featured_blog).absolute_url }}”>{{ content_by_id(module.big_image_featured_blog.choose_featured_blog).title }}</a></h3>
</div>
</div>