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:
- Article a
- Article b
- Write a comment
- 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:
- Article a
- Article b
- Write a comment
- 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
1 Answer
Reset to default 0It 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!
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744810288a4595018.html
评论列表(0条)