On my single post pages, I want to include an xhtml snippet only if the posted year was before 2007.
How could I do this? I've worked out that I'll need to use the_date('','','',FALSE) but thats about as far as I can get.
On my single post pages, I want to include an xhtml snippet only if the posted year was before 2007.
How could I do this? I've worked out that I'll need to use the_date('','','',FALSE) but thats about as far as I can get.
Try this:
<?php if (get_the_time('Y') < 2007) { ?>
XHTML SNIPPET GOES HERE
<?php } ?>
This topic has been closed to new replies.