Modified date in post

Posted in: Newspaper
Post count: 2

I want to show the modified date of a post next to the publish date. It´s important for my blog to show the customers that the post is always up to date.

Is there a possibility to show or add the modified date next to the publish date on a post?

Thank you for your help.

Post count: 20688

Hi,

One way would be to use a plugin that has that option. The other would be to make some modifications to the theme. Here is a related topic
https://forum.tagdiv.com/topic/how-to-make-this/
You need to edit the corresponding file from the theme, according to the post template style that you are using.
For example if you are using Post template style 2, opening the single_template_2.php file from the main theme folder you will see the line that needs to be replaced
https://www.screencast.com/t/g53HT0PldRtj
Like this
https://www.screencast.com/t/4hGRjk2K
Then enter this code in Theme panel->Custom Css

.td-module-meta-info {
display:inline-flex;
}
.the-modified-date {
padding-left:5px;
padding-right:10px;
padding-top:2px;
}

You can use an existing class instead of the one currently in the code
https://www.screencast.com/t/ROSOqFlXMW
This way there would be no need to enter the Css code in Theme panel.
At the moment there is no setting in the theme that would allow the modified date to be displayed on posts. That is why you could probably search for a plugin that you can use. Or try the method presented above.

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.