Update body class based on menu
As @CharlesClarkson has already explained, you cannot modify the page output with PHP after the output has been sent to the browser. Your menu certainly runs after body_class since the menu must run inside the <body> tag. The only PHP solution I see would involve editing your theme templates in addition to the code above … Read more