I changed the default display in the post header ‘posted on’ into last modification date and it is working on my blog, so I can share the solution:
1) in functions.php file:
if ( ! function_exists( ‘quark_posted_on’ ) ) {
function quark_posted_on() {
change into:
if ( ! function_exists( ‘quark_modified_on’ ) ) {
function quark_modified_on() {
2) in content.php file:
<?php quark_posted_on(); ?>
change into:
<?php quark_modified_on(); ?>
and:
esc_attr( get_the_date( ‘c’ ) ),
esc_html( get_the_date() )
change into:
esc_attr( get_the_modified_date( ‘c’ ) ),
esc_html( get_the_modified_date() )