Search for the Article

How to Hide Posts from Blogger Homepage

Hide Posts from Blogger Homepage: Blogger blog date:

Post blogger in previous date , it will appear on previous post list.

Hide Posts from Blogger Homepage: Using Label

  
  <b:include data='post' name='post'/>
  
  

Once you found this code, replace the code with below code:

  
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<b:loop values='data:post.labels' var='label'>
        <b:if cond='data:label.isLast == "true"'>
            <b:if cond='data:label.name != "add label here"'>
                <b:include data='post' name='post' />
            </b:if>
        </b:if>
    </b:loop>
<b:else/>
    <b:include data='post' name='post' />
</b:if>
  

Replace the text "Add label here" with your post label, Post with same label will hide from code.

Hide Posts from Blogger Homepage: Using ID

Get the blogger post id by opening post in edit mode, in my case, my post id is :=  2320574785720985361, 

Search for this line of code

  
<div class='post hentry uncustomized-post-template' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>

  
<div class='post hentry uncustomized-post-template' expr:id='"post-" + data:post.id' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>

Now search for the closing of </head> tag
    
  </head>

Paste the following code and replace your post id with the demo one


  
  
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<style type='text/css'>
#post-1234567890123456789{display:none;}
</style>
</b:if>