ok despite getting no help i found the solution
<?php
$posttime = strtotime($post->post_date);
$currtime = time();
$today = date(‘M d’,$currtime);
$postday = date(‘M d’,$posttime);
if($postday>$today) : ?>
all posts will have to have a timestamp of later than today’s date
<?php endif; ?>