If you want to show the sharing buttons on post pages only, add this code below:
<b:if cond='data:blog.pageType == "item"'></b:if>
Before:
<div class='post-share-buttons'>
<b:include data='post' name='shareButtons'/>
</div>
After:
<b:if cond='data:blog.pageType == "item"'>
<div class='post-share-buttons'>
<b:include data='post' name='shareButtons'/>
</div>
</b:if>
No comments:
Post a Comment