My individual archives go here: yyyy/mm/entry_basename.php
I created a new archive template linked to the individual archives for a printable version. I want the printable version to reside next to the regular version in the archive directory, using the name print_<$MTEntryID pad="1"$>.php for each one.
QUOTE
%y - year as a decimal number without a century (range 00 to 99)
%Y - year as a decimal number including the century
%Y - year as a decimal number including the century
So I should be able to duplicate the indi archive path using strftime:
CODE
%Y/%m/print_<$MTEntryID pad="1"$>.php
but that produces "07/04/print_000030.php" for a path. If I use the small "y" I get the 4 digit year, and the capital "Y" yields the 2 digit year - opposite of strftime.
Is this a bug, or are you not using strftime anymore?