Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. // adiciona produto ao menu se categoria existir
  2. add_filter( 'wp_nav_menu_items', 'adiciona_produto_menu', 10, 2 );
  3. function adiciona_produto_menu( $items, $args ) {
  4. // não funciona com a categoria samsung
  5. //if( has_term( 'samsung', 'product_cat' ) ) {
  6. if( has_term( 's9-plus', 'product_cat' ) ) {
  7. $produto = '<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children">
  8. <div class="nav-toggle-subarrow">
  9. <i class="fa fa-angle-down"></i>
  10. </div>
  11. <a href="#">
  12. <i class="fa fa-shopping-cart"></i>
  13. <span class="fontawesome-text">Produtos</span>
  14. </a>
  15. <ul class="sub-menu">
  16. <li class="menu-item menu-item-type-custom menu-item-object-custom">
  17. <a href="#">
  18. <span class="fontawesome-text">Samsung</span>
  19. </a>
  20. </li>
  21. </ul>
  22. </li>';
  23. }
  24. return $produto.$items;
  25. }
  26.  
  27. $args->theme_location == 'primary'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement