Archived topic
how to remove meta for particular posts?
1 reply · Started by Kemo on March 28, 2019
Viewing posts 1–2 of 2
Hi!
I'm using a child theme. What do I need to add to remove the meta on a particular post ("posted by $username on $date")
I assume something like this:
if (is_single ($post = '13')) {
something;
}
but don't know how to wipe the meta.
thanks!
Hi there,
Something like this should work:
.postid-XXX .entry-meta {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know :)
This archived topic is closed to new replies.