Forums

Include only on certain date (2 posts)

  1. owencjones
    Member
    Posted 2 years ago #

    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.

  2. Otto42
    Moderator
    Posted 2 years ago #

    Try this:

    <?php if (get_the_time('Y') < 2007) { ?>
    XHTML SNIPPET GOES HERE
    <?php } ?>

Topic Closed

This topic has been closed to new replies.

About this Topic