groups

Link to this snippet:


Download to Code Collector

language: PHP
licence: Other

If Posts within 7 days

options: send to code collectorview all reynoldsdigital's snippets
<?php 
  $week = date('W'); $year = date('Y'); 
  $ageunix = get_the_time('U');
$days_old_in_seconds = ((time() - $ageunix));
$days_old = (($days_old_in_seconds/86400));
?>

<?php $current_week = date('W'); ?>
<?php $current_month = date('m'); ?>
<?php $current_year = date('Y'); ?>

<?php if ($days_old > 7) : ?>
           <?php include("archiveposts.php"); ?>
<?php else : ?>
           <?php include("currentposts.php"); ?>
<?php endif; ?>