Advertisement
Guest User

Untitled

a guest
May 28th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. if(function_exists('register_sidebar'))
  3. register_sidebar(array(
  4. 'before_widget' => '<section class="widgets">',
  5. 'after_widget' => '</section>',
  6. 'before_title' => '<h2>',
  7. 'after_title' => '</h2>'
  8. ));
  9.  
  10.  
  11.  
  12. // Registro de menus
  13. function navigation_menus() {
  14.  
  15. $locations = array(
  16. 'principal' => 'Menu Principal',
  17. 'menu-coluna-lateral' => 'Menu Lateral',
  18. 'menu-rodape' => 'Menu Rodapé'
  19. );
  20. register_nav_menus( $locations );
  21.  
  22. }
  23.  
  24. // Hook action
  25. add_action( 'init', 'navigation_menus' );
  26.  
  27. //fim registro menu
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. class Meu_Item{
  36. public function walk($args){
  37. $m= "<li class='Minha-Classe'>";
  38. $m.= "<a href='".$args[1]->url ."'>".$args[1]->title."</a>";
  39. $m.= "</li>";
  40. return $m;
  41. }
  42. }
  43.  
  44. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement