I am looking to display different content after a user registers. Is there a way to find out the registration date and then if it’s been 1 day display one thing, but if it’s been 2 days display something else?
Something like this, but based on the registration date and not a post entry date:
<?php if (strtotime($post->post_date) > strtotime('-30 days')): ?>
//Text for posts created in the last 30 days
<?php endif; ?>
Yes you can!
hope this helps
The above code is now deprecated.