Archived topic
Hide Specific Categories From Navigate menu
1 reply · Started by Dimitrios on February 9, 2022
Viewing posts 1–2 of 2
I'm using the Geek template from the library.
The blog page shows all the categories of my posts. How can I hide specific categories from showing on the navigation menu?
Thank you in advance.
Hi Dimitrios,
Try this CSS:
ul.wp-block-categories-list.wp-block-categories li:nth-child(1) {
display: none;
}
If you want to hide the 3rd category, change the 1 to 3.
Let me know :)
This archived topic is closed to new replies.