Archived topic
Adding the text "Posted " before date on blog posts (in widget)
1 reply · Started by Jonas on November 7, 2019
Hello and thank you for a very easy to use wp theme!
On the Classic design the text "Published" is not shown on blog posts but I used the add_filter-coding from another topic so solve it on the blog page (https://generatepress.com/forums/topic/meta-in-customizer/page/2/).
But I can't figure out how to display the text "Published" before the date (class="post-date") in the widget where you can show recent posts.
Any suggestions?
Hi there,
simplest way would be with some CSS like so:
.widget_recent_entries ul li .post-date:before {
content: 'Published:';
margin-right: 5px;
}