Not displaying post date
I am trying to not display post dates. I was able not not display the post date and clock icon by utilizing the custom code below. However I can still see the "at" after the post author's name ("Published by John Doe at"). What can I do to also not display the "at"?
.post-date { display: none !important; }
.icon-clock:before {
content: '\e863';
display: none;
}
Comments