• Hi, first of all compliments for your great theme. I have a question about the date that is shown in the posts. It shows the publication date. But I regularly update my articles, so I would like to show the ‘last updated’-date as well. How can I do that?

    with kind regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author HashThemes

    (@hashthemes)

    Hi,

    To display the updated date instead of posted date, please follow the instruction
    1. Go to Appearance > Customize > Additional CSS and paste the below CSS code

    .published{
        display:none;
    }
    
    .published.updated,
    .updated:not(.published) {
    	display: inline;
    }
    Thread Starter bob-de-webbouwer

    (@bob-de-webbouwer)

    Hi, thanks for getting back. The answer is almost perfect ?? Like I said, I would like to show both the published and the updated date. Like this:

    ‘Published 10 december 2019. Last updated 15 december 2019.’

    Can you tell me the code to do this?

    with kind regards.

    Theme Author HashThemes

    (@hashthemes)

    Hi,

    Sorry to say that it is not possible with simple CSS code. It would require change in codes.

    Thanks

    Thread Starter bob-de-webbouwer

    (@bob-de-webbouwer)

    Okay thanks, I will try that.

    with kind regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to add ‘last updated’ to post?’ is closed to new replies.