I have added this to my child theme:
function menu_args( $args ) {
$args = array(
'menu_class' => 'nav sf-menu',
'container_class' => 'menu',
'walker' => new Custom_Walker
);
return $args;
}
add_filter( 'thematic_nav_menu_args', 'menu_args' );
And now I can use just only the first menu that I have created, if I change the primary menu nothing happens on the website.
What could be the issue? Is something wrong with the above function or the filter?
Thank you.