Print the Added or Updated Post Date and Time in the Single.php page
Description
PHP Source Code
<?php
if (get_the_modified_time() != get_the_time()) {
echo 'Last updated on ' . get_the_modified_time('F j, Y \a\t g:i a');
}
?>