I have a design that calls for an extra wp_page_menu in the footer. Because of this code in header-extensions.php:
function thematic_add_menuclass($ulclass) {
return preg_replace('/
/', '<ul class="sf-menu">', $ulclass, 1);
} // end thematic_add_menuclass
add_filter('wp_page_menu','thematic_add_menuclass');
every wp_page_menu has the class "sf-menu". What can I put in my child theme's functions.php so the menu in the footer gets the class "footer-menu" instead?
I am aware that this particular "problem" is probably more easily solved via CSS but for learning purposes I would like to do it through altering my functions.php file.
Cheers,
DB