Remove blog post categories?
-
At the top of each blog post on my site, under the title, it lists (in red) the post date and post category. Since I don’t categorize my posts, they all show as “Uncategorized”
Is there any way to remove the post category from showing? I’d prefer not to have every one of my blog posts listed as uncategorized if possible. Maybe a custom CSS edit?
Appreciate any help or suggestions.
The blog I need help with is: (visible only to logged in users)
-
To remove the date, you can add the following to your CSS:
.entry-meta { display: none; } -
Thank you. That works, but is there any way to leave the date and remove the category? I would prefer to leave the date showing if possible.
Appreciate your help
-
My apologies, remove the CSS I shared earlier. Here’s the CSS you want to add:
.categories-links { display: none; } -
Perfect! Thank you, Deborah. This is exactly what I was trying to accomplish.
I really appreciate your help.
- The topic ‘Remove blog post categories?’ is closed to new replies.