Hi Bruno. Not sure what you mean by “future update”. I’m not aware of any easy way to schedule a post update and display that scheduled time to the user. If you mean you want to display the last time the post was modified you can do this:
1. Copy single.php to a child theme.
2. Replace this line:
<p class="post-byline"><?php _e('by','hueman'); ?> <?php the_author_posts_link(); ?> · <?php the_time(get_option('date_format')); ?></p>
with this:
<p class="post-byline">
<span style="text-transform:capitalize;">
<?php _e('By','hueman'); ?>
<?php the_author_posts_link(); ?>
- In <?php the_time('F j, Y'); ?>
</span>
<span style="text-transform:lowercase;">
at <?php the_time('G:i'); ?>
- updated to <?php the_modified_time('G:i'); ?>
</span>
</p>
Using inline styles to override the default theme css which transforms it all to upper case. I broke up the line into pieces so it would be easier to see the changes. You could string it all together in one long line like the original code if you want to.