Today I want to show you the concise way to show page in homepage , post page in blogger. The simple way to do this is add the conditional tag to your HTML of your theme.
First log in to Blog and identity the page or widget you wish to show or hide.
The conditional tag to be used are as follows;
1.<b:if cond='data:blog.pageType == "item"'>
This one is used when you want to show page on blog page. You need to study the structure of your code templates before you can successful utilize this function. Now you need to add the conditional closing tag which is </b:if> after </div>
Example : How To Show Popular Post In Blog Page Only
2. <b:if cond='data:blog.url == data:blog.homepageUrl'>
Insert this conditional tag after the includable id in the HTML of your theme. Then add the conditional closing tag after </div> </b:if>
Example : How To Show Certain Page/Widget Only In Homepage
Conclusion
Add these conditional tags in pages you want to show or hide and it can be used vice versa.




