Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bcleverc_marta

    (@bcleverc_marta)

    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() )

    Thread Starter bcleverc_marta

    (@bcleverc_marta)

    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 ??

    Thread Starter bcleverc_marta

    (@bcleverc_marta)

    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?

Viewing 3 replies - 1 through 3 (of 3 total)