Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress: Displaying sub-pages only for the current page Re: WordPress: Displaying sub-pages only for the current page

#62027

Actually this can be achieved using just a little css – and it will work exactly as in your example too.

Code:
Code:
ul#pagenavi li ul { display: none; }
ul#pagenavi li.current_page_item ul, ul#pagenavi li.current_page_ancestor ul { display: block; }