Advertisement
Guest User

Untitled

a guest
Nov 16th, 2012
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. class BB_Nav_Footer_Walker extends Walker_Nav_Menu {
  3.     function start_lvl(&$output, $depth = 0, $args = array()) {
  4.         $output .= "\n<p class=\"sub-menu\">\n";
  5.     }
  6.    
  7.     function end_lvl(&$output, $depth = 0, $args = array()) {
  8.         $output .= "\n</p>\n";
  9.     }
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement