Hi, I need to check if FeaturedPost widget
is enabled, AND then check if FeaturedPost id
is equal to current retrieved post on homepage loop then the loop will ignores it.
Something like this:
<b:with value='data:widgets.FeaturedPost' var='fp'>
<b:loop index='item' values='data:posts' var='post'></b:with><b:eval expr='data:item.id'/></b:if></b:loop>
OR:
<b:loop index='item' values='data:posts' var='post'>
<b:if cond='data:item.id != data:widgets.FeaturedPost.id'><b:eval expr='data:item.id'/></b:if></b:loop>
<data:widgets.FeaturedPost.title/>
<data:widgets.FeaturedPost.posts/>
<!--Can't find substitution for tag [widgets.FeaturedPost.posts]-->
<data:widgets.FeaturedPost.first.posts/>