This is a bug. In order to display the date for ALL the posts written on same day, follow these steps:
1>Login to Blogger
2>Click on 'Layout' and then click on 'Edit HTML'. First back up your current template.
3>Click on 'Expand Widget Template'
4>Find this code:
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>
5>Replace the found code with the code below:
<b:if cond='data:post.dateHeader'>
<script>var ultimaFecha = '<data:post.dateHeader/>';</script>
<h2 class='date-header'><data:post.dateHeader/></h2>
<b:else/>
<h2 class='date-header'>
<script>document.write(ultimaFecha);</script>
</h2>
</b:if>
6>Save the template and close.
Blogger Templates
0 comments:
Post a Comment