Advertisement
Guest User

Untitled

a guest
Jul 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1.     public function nav_menu() {
  2.         $args = array(
  3.             'theme_location'    => has_nav_menu( 'primary' ) ? 'primary' : '',
  4.             'menu'              => '',
  5.             'container'         => '',
  6.             'container_class'   => '',
  7.             'container_id'      => '',
  8.             'menu_class'        => '',
  9.             'menu_id'           => '',
  10.             'echo'              => false,
  11.             'before'            => '',
  12.             'after'             => '',
  13.             'link_before'       => '',
  14.             'link_after'        => '',
  15.             'items_wrap'        => '<ul data-breakpoint="800" id="%1$s" class="%2$s">%3$s</ul>',
  16.             'depth'             => 0,
  17.         );
  18.  
  19.         return wp_nav_menu( $args );
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement