wp_list_pages CSS Class
-
I found a piece of code that adds a class to wp_list_pages menu items:
function menu_css_class($css_class, $page){
$css_class[] = "nav_" . $page->post_name;
return $css_class;
}
add_filter("page_css_class", "menu_css_class", 10, 2);
Is there any way to add the class to the link itself, instead of the li?
Thanks,
Josh
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_list_pages CSS Class’ is closed to new replies.