Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress WordPress Theme Development Building Out WordPress Navigation The wp_nav_menu Function

Gary Calhoun
Gary Calhoun
10,317 Points

When I add the pages to the new menu I get an error

Notice: ob_end_flush(): failed to send buffer of zlib output compression (1) in E:\MAMP\htdocs\wordpress\treehouse\wp-includes\functions.php on line 3297

This is the error I receive however I can still save menu and rearrange then it goes away. Should I be worried about this though?

Garrett Sanderson
Garrett Sanderson
12,735 Points

Hi Gary, Can you add the code in the functions file?

2 Answers

Gary Calhoun
Gary Calhoun
10,317 Points

Sorry I forgot to add here it is

function wp_ob_end_flush_all() {
    $levels = ob_get_level();
    for ($i=0; $i<$levels; $i++)
        ob_end_flush();
}
Gary Calhoun
Gary Calhoun
10,317 Points

Thank you its not showing the error anymore, weird nonetheless.