How to verify if a user visiting a Blogspot blog is the owner of that blog?
I would like to verify that the us开发者_如何学JAVAer is the owner of the blog by doing something like the following:
<b:if cond='is_admin'>
(display an admin button)
</b:if>
Any recommendations?
Thanks!
the answer is:
<b:if cond='data:post.editUrl'>
<span expr:class='"item-control " + data:post.adminClass'>
(display an admin button)
</span>
</b:if>
I apologize for the inconvenience!
Thanks
精彩评论