Home > Mobile >  Removing category and article tags from wordpress articles
Removing category and article tags from wordpress articles

Time:06-07

Sample article: https://www.thestyleprophet.in/travel-food/mango-juice-recipe/ I would like to not show the tag/category name which appears on the right hand side of the page after the title of the article. I could not find a plugin that can do this on the wordpress website. Please suggest.

The website has been generated using the following theme on wordpress. I do not have any other source code: https://www.jojo-themes.net/pluto-clean-personal-wordpress-masonry-blog-theme-v4-3-1/ I could not find any developer documentation on this as well.

CodePudding user response:

  1. Login as administrator
  2. Settings > Permalinks > Common Settings
  3. Choose "Post Name"
  4. Set "." in each Optional Fields [Category base, Tag base]

Note: If other services used based on that WordPress site, be careful. It can crash other services. If website is alone, safe to change setting. Hope it help.

CodePudding user response:

Why not just use simple CSS to fix that.

.post-categories {display:none;}

That should achieve what you asked.

  • Related