wordpress hightlight Q
wordpress hightlight Q
Out of context: Reply #12
- Started
- Last post
- 18 Responses
- acescence0
there are a few ways you can do it, I use that method a lot, create a page that has posts from a specific category. I usually build the nav manually though, rather than using the list_pages function. then it's a matter of using conditional tags to check what category you're in and highlighting that page in the nav...
if ( in_category( 'news' ) || is_page( 'news' ) {
echo 'highlight_class';
}