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() )
Thanks a lot for help. I meant changing default settings of display, but I see it wasn’t clear. I’m experimenting with quark_posted_on() – hope I will figure it out 🙂
For me it is loading from the link above, at least now – I have no idea why it wasn’t for you. Different language shouldn’t matter 🙂 Could you please check it up again?