For those rare circumstances where you just have to replace text-based navigation with images… Continue reading Image replacement for wp_list_pages
Tag: wp_list_pages
Adding More Classes to wp_list_pages()
Download
If you’re trying to style nested items in wp_list_pages()
the task can be daunting. You’ll apply a style to an <li>
then have to unapply those styles for the nested <li>
s, and if you’re dropdowns get any deeper, you CSS can become overwhelming. It’s a little better if you don’t care about IE, because then you can use those fancy CSS selectors like ul > li,
or ul li > li
to target certain depths. But if you’re stuck fighting with IE, maybe this will help.