newbiedev
10-15-2008, 02:40 PM
Hi Guys,
I am newbie, so please tolerate my very basic question.
I have this loop
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.name == "Software"'>
Yes software tag is present
<b:else/>
No software tag is not present
</b:if>
<b:if cond='data:label.isLast != "true"'/>
</b:loop>
</b:if>
In this loop, I am searching for 'Software' tag in the post. If it is found i want that a flag should be set to indicate that. How to create a temporary variable and set and rerieve value from it?
Please help
I am newbie, so please tolerate my very basic question.
I have this loop
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.name == "Software"'>
Yes software tag is present
<b:else/>
No software tag is not present
</b:if>
<b:if cond='data:label.isLast != "true"'/>
</b:loop>
</b:if>
In this loop, I am searching for 'Software' tag in the post. If it is found i want that a flag should be set to indicate that. How to create a temporary variable and set and rerieve value from it?
Please help