Güncelleme tarihi get_the_modified_date ya da the_modified_date fonksiyonu ile çağırılır. İlgili fonksiyonların olduğu konumu bulursanız (single.php içinde) yanında Son Güncelleme yazıyordur muhtemelen. Orayı şu şekilde değiştirebilirsiniz:
<?php
$yayinlanma = get_the_date('Y-m-d H:i:s');
$sonduzenlenme = get_the_modified_date('Y-m-d H:i:s');
if ($sonduzenlenme > $yayinlanma) {
echo "<p>Son Güncelleme:";
echo get_the_modified_date('d-m-Y')."</p> ";
}
?>Bu şekilde eğer yazı güncellenmemişse güncelleme tarihi gösterilmez.