Remove Post Date from Opti Theme
-
I would like to remove the post date from all posts in my opti theme
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can make customizations like this to your theme using Custom CSS. To add custom CSS, go to Appearance > Customize in your dashboard and select CSS from the Customize tools. In the CSS editor, you can enter the following CSS:
.entry-date { display: none; }However, because of how this theme is set up, this CSS won’t remove the word on before the date. One way to do that is with this CSS:
.entry-date { display: none; } .postmetadata { visibility: hidden; } .breadcrumbs, .byline, .commentcount { visibility: visible; }Please let me know how that works for you! :) We also have more information about working with CSS at these links:
If you have additional questions, you can get more CSS support in our CSS customization forum, from both staff and volunteers:
https://en.forums.wordpress.com/forum/css-customization -
- The topic ‘Remove Post Date from Opti Theme’ is closed to new replies.