Greetings
While I find the following code useful on the blog page, I don't want it on my tag.php page, as the static pages shouldn't be date specific.
<div class="postdate">
<div class="postday">
<?php the_time('j') ?></div> <!-- POST DAY -->
<div class="postmonth">
<?php the_time('M') ?>
</div> <!-- POST MONTH -->
</div> <!-- POST DATE -->
I would like to add a conditional statement that says "If this is a page (any) instead of a post, show the date block.
Any suggestions that won't require me to put in post numbers, page names, etc?
Thank you!