Ben Scott Wallick adında birisi tarafından oluşturulan bir WordPress blog tema kullanıyorum. Here onun sitesidir. Bilginize, ben "Barthelme" temasını kullanıyorum.
Neyse, şöyle Çıkış tarihi bu tema yazdırır: 5 Ağustos 2009 "2009 08 05" olarak görüntülenir. 5 Ağustos 2009: Ben aşağıdaki biçimde görüntüsünü değiştirmek istiyorum.
Bunu nasıl yaparsınız?
I WordPress kodu aşağıdaki işlevi bulundu. Ben sadece her nasılsa ben yukarıda sordum ne yapmak için aşağıdaki kodu değiştirebilir mi? Eğer öyleyse, ben ne gibi değişiklikler yapmak gerekir?
function barthelme_date_classes($t, &$c, $p = '') {
$t = $t + (get_option('gmt_offset') * 3600);
$c[] = $p . 'y' . gmdate('Y', $t);
$c[] = $p . 'm' . gmdate('m', $t);
$c[] = $p . 'd' . gmdate('d', $t);
$c[] = $p . 'h' . gmdate('h', $t);
}