# Day/Month/Year Ago Today #
by Cyberian75
Source: http://board.michaelpark.net/viewtopic.php?t=25
Basically, it put up links to the posts you've made nth days, months and/or years ago today.
Put the following at the end of the b2template.functions.php file right before the "?>"
closing tag...
[code]
year;
$month = zeroise($row->month,2);
$day = zeroise($row->day,2);
echo ''.$num.' '.$linkmsg.'';
} else {
echo $num.' '.$linkmsg;
}
}
?>
[/code]
And call it with the following from where you want to put those links...
[code]
[/code]
All there is to it!
Source: http://board.michaelpark.net/viewtopic.php?t=25