How would I achieve this condition …
if lastest comment is < 7 days old
echo 'New Comment';
else ''
How would I achieve this condition …
if lastest comment is < 7 days old
echo 'New Comment';
else ''
You must be logged in to post a comment.
To get the latest comment use
get_comments()
.get_comment_date
returns the date of a comment in any format for PHP’sdate()
.Now it is easy. Let’s put the logic into a function to keep the global namespace clean:
Add the function to your plugin or to your theme’s
functions.php
.To display a special message:
To get the days for a specific post (here ID
123
) :