Hallo, ich nutze das - leicht modifizierte - blank-theme. Wie kann ich die Datumsanzeige im News-Modul in die Langform abändern? Also statt 04 Apr eben 04. April oder 04.04.?
Moin,
./themes/pmx-blank/theme.functions.php
$story['posted_month'] = strftime('%b', $dat);
$story['posted_day'] = date('d', $dat);
ändern in
$story['posted_month'] = strftime('%m.', $dat);
$story['posted_day'] = date('d.', $dat);