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

Prevent WordPress from giving each post a number

programmeradmin3浏览0评论

My WordPress blog is giving every entry a number. Even the option to comment under the post and the newsletter opt-in are numbered.

It looks like that:

  1. Article a
  2. Article b
  3. Write a comment
  4. Subscribe to the newsletter

How can I prevent WordPress from doing that?

My WordPress blog is giving every entry a number. Even the option to comment under the post and the newsletter opt-in are numbered.

It looks like that:

  1. Article a
  2. Article b
  3. Write a comment
  4. Subscribe to the newsletter

How can I prevent WordPress from doing that?

Share Improve this question edited Jan 23, 2020 at 10:12 Max Yudin 6,3882 gold badges26 silver badges36 bronze badges asked Jan 22, 2020 at 9:35 MarionMarion 31 bronze badge 2
  • 1 WordPress doesn’t do this. It would be your theme. I suggest contacting your theme’s author. – Jacob Peattie Commented Jan 22, 2020 at 9:45
  • Ok, thank you for the suggestion! – Marion Commented Jan 22, 2020 at 9:59
Add a comment  | 

1 Answer 1

Reset to default 0

It is more likely theme is adding numbers rather than Wordpress.

Find out the css style associated with the numbering and set its display value to none. If you are using a browser based on Google Chrome you can highlight the article numbers, right click and select Inspect.

Then, under the Appearance | Customize menu item in your admin dashboard click "Additional CSS". Add the css style you wont to override, for example; if your style is article_id_number do the following.

.article_id_number {display:none;}

Save the changes and reload your page. The number should be gone. This trick works for anything you don't want displayed, similarly you can override your theme css for any other elements.

Note: If the id number and the article title share the same css style the above wont work for you. In which case contact your theme developer and they might include an option to remove the numbers.

Edit: See my comment below regarding down vote!

发布评论

评论列表(0)

  1. 暂无评论