Guest User

Untitled

a guest
May 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. // add to functions.php
  2. // removes the nav menu from the specific page
  3. // Replace my-slug with the correct slug
  4.  
  5. function hide_nav_menu($nav)
  6. {
  7.         if (is_singular('my-slug'))
  8.         {
  9.             return false;
  10.         }
  11.         return $nav;
  12. }
  13. add_filter( 'wp_nav_menu_items', 'hide_nav_menu' );
Add Comment
Please, Sign In to add comment