https://xmlexpr.blogspot.com/2025/09/update-blogger-html-gadget-using-javascript.html
https://xmlexpr.blogspot.com/
3191104826458859461
https://xmlexpr.blogspot.com/2023/08/full-content-featured-post-widget.html
Full Content Featured Post Gadget
September 26, 2025
2025
September
26
02:44 PM
How to display full post content on Blogger Featured Post gadget.
Featured Post is a blog gadget that highlight a single post. You can only have one of this gadget.
By default, this gadget only displays a snippet of the post content. If you want to display the full content, for whatever creative idea you have in mind, you would need to modify the widget tag.
🎯 Custom FeaturedPost Widget Tag
The original widget tag is using a hidden includable element to display the post content, so the result is always a snippet.
<b:include name='snippetedPosts'/>
You just have to replace that with <data:post.body/>
, like so:
<b:widget id='FeaturedPost1' locked='false' title='Featured Post' type='FeaturedPost' version='2' visible='true'>
<b:includable id='main' var='this'>
<b:loop values='data:posts' var='post'>
<b:if cond='data:postDisplay.showTitle'>
<h1><data:post.title/></h1>
</b:if>
<!-- this will force the gadget to displays full content -->
<data:post.body/>
</b:loop>
</b:includable>
</b:widget>
https://www.blogger.com/rpc_relay.html
https://www.blogger.com/comment/frame/220561901913020919?po=3191104826458859461&hl=en&saa=85391&origin=https://xmlexpr.blogspot.com&skin=contempo
https://xmlexpr.blogspot.com/2023/08/full-content-featured-post-widget.html#comments
true
https://xmlexpr.blogspot.com/search/label/template-development
template-development
https://xmlexpr.blogspot.com/2025/09/update-blogger-html-gadget-using-javascript.html
https://xmlexpr.blogspot.com/