Reply To: problems: menu & bbpress

Home Forums Support problems: menu & bbpress Reply To: problems: menu & bbpress

Home Forums Support problems: menu & bbpress Reply To: problems: menu & bbpress

#145425
Uwe Pfeifer

the functions.php looks like this now hope i made the ?> correct at the end:

<?php
/**
* Generate child theme functions and definitions
*
* @package Generate
*/

function generate_remove_bbpress_parent_classes($class)
{
return ( $class == ‘current_page_parent’ ) ? FALSE : TRUE;
}

add_filter(‘nav_menu_css_class’, ‘generate_remove_bbpress_parent_class’);
function generate_remove_bbpress_parent_class($classes)
{
switch (get_post_type())
{
case ‘forum’:
// we’re viewing a custom post type, so remove the ‘current_page_parent’ from all menu items.
$classes = array_filter($classes, “generate_remove_bbpress_parent_classes”);
break;
}
return $classes;
}

?>