July 26, 2016

Show Date for Each Blogger Post Version 2.0

How to show date for each blogger posts - This tutorial will help you on how you can tweak your template to show date for each of your Blogger posts. By default, post that are published on the same day will be on the same date folder. Luckily this tweak will display both Date and Time stamp on each blog post. It's really simple so let us start. I actually have two versions for this tutorial just in case the other one works. I'm pretty sure one of these options will work on your template. You can check out the first version on the link provided below. I really hope this will help you guys.

Version 1 - June 13, 2016
Version 2 - July 26, 2016



Step 1. Proceed to EDIT HTML.


Step 2. Find Code 1.0 > Replace with Code 2.0

CODE 1.0

<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>



CODE 2.0

<b:if cond='data:post.dateHeader'>
<script>var ultimaFecha = &#39;<data:post.dateHeader/>&#39;;</script>
<h2 class='date-header'><data:post.dateHeader/></h2>
<b:else/>
<h2 class='date-header'>
<script>document.write(ultimaFecha);</script>
</h2>
</b:if>


BEFORE

AFTER