• Resolved vipul1211

    (@vipul1211)


    Hello,

    I need to change the date that is shown after the blog Post title in mesocolumn theme. I need to display the last updated post time instead of the Post publishing date.

    Can anyone resolve it?

    Thanks in advance

Viewing 4 replies - 1 through 4 (of 4 total)
  • Go to All posts>select “quick edit” under the post and change the date.

    Thread Starter vipul1211

    (@vipul1211)

    It’s not working..

    Also, I need to automatically update the date when I update the posts.

    Theme Author Richie KS

    (@rkcorp)

    this is a customize question.
    the theme did not use modified date as per wp default, you’ll need to edit the time in lib/template/post-meta.php

    try replace
    <?php echo the_time( get_option( ‘date_format’ ) ); ?>
    to
    <?php echo get_the_modified_time( get_option( ‘date_format’ ) ); ?>

    Thread Starter vipul1211

    (@vipul1211)

    Thanks,
    It worked

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘change date after Post’ is closed to new replies.