Hiding categories on front page in ABLE theme
-
Hi,
I’d like to know if there’s a possibility for hiding all but one category on the front page using CSS. I’d prefer to have the front page show only posts from my ‘nature’ category instead of displaying all the recent posts. And yes, I have the CSS upgrade.
I’ve tried the ‘display posts shortcode’, but that’s not exactly what I’m looking for.
Thanks in advance
The blog I need help with is: (visible only to logged in users)
-
Hi there, what we can do is to hide all posts on the main page and then bring back only the ones in the nature category with the following CSS.
.home article { display: none; } .home article.category-nature { display: block; } -
- The topic ‘Hiding categories on front page in ABLE theme’ is closed to new replies.