Hi.
Am trying to make a link display in all posts (postbit_legacy), but only have it displayed 30 days after the post was made.... after that, the link "expires" and should not be displayed.
Have tried various combinations of this, but with no success:
PHP Code:
<vb:if condition="$post['postdate'] < (TIMENOW - (86400*30))">
MY LINK
</vb:if>
Any help will be greatly appreciated - Thanks.
--------------- Added [DATE]1300892056[/DATE] at [TIME]1300892056[/TIME] ---------------
Nevermind
Figured it out:
PHP Code:
<vb:if condition="$post['dateline'] > TIMENOW - 30*86400">
dateline and not postdate....