Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you show us a page with the post date?
You should give us page link so we can help you.
you can apply this code too.
.entry-meta {
display: none;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
The class is “post-date”.
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
Alternatively use your Child Theme style.css file to hold your CSS modifications:
.post-date {
display: none;
}
Hello,
.post-date, .post-meta span:nth-of-type(2) {
display: none;
}
This will be the solution to your problem. You can either enter this code in your theme custom css area in the back-end or create a child theme for the purpose.
#2
#3
#5
#6
#7
TKS!
Succeed and i learn a new thing “child theme”.