最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to remove "Categories:" part after the post title?

programmeradmin0浏览0评论
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 question

Im 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 question

Im 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
  • It is in the template somewhere, maybe in a separate part. If you are using linux try grep 'Categories' * -rn inside the theme folder – Кристиян Кацаров Commented Jul 28, 2019 at 5:10
Add a comment  | 

1 Answer 1

Reset to default 0

It 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;
}
发布评论

评论列表(0)

  1. 暂无评论