Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 5 years ago.
Improve this questionIm quite new to wordpress and trying to figure out the problem shown on the picture. Cant find the place to hide it.Thanks!
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 5 years ago.
Improve this questionIm quite new to wordpress and trying to figure out the problem shown on the picture. Cant find the place to hide it.Thanks!
Share Improve this question asked Jul 27, 2019 at 21:39 SteveSteve 31 bronze badge 1 |1 Answer
Reset to default 0It depends on the Wordpress theme you're using. If you can find out what html class the category/post meta is under using Inspect Element, it will be easy to hide it via CSS. Otherwise you will need to find where the 'Post Meta Data' is being added in PHP inside your theme and remove it.
For now you can try and paste the following code inside your style.css file and see if it works, but it's just guessing at this stage:
footer.entry-footer, .entry-meta {
display: none;
}
grep 'Categories' * -rn
inside the theme folder – Кристиян Кацаров Commented Jul 28, 2019 at 5:10