rdusnr

Untitled

Oct 11th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. if( ! function_exists( 'kleo_side_menu_button' ) ) {
  2. /**
  3. * Add side button to menu
  4. * @param string $items
  5. * @param object $args
  6. * @return string
  7. */
  8. function kleo_side_menu_button ( $items, $args )
  9. {
  10. if ($args->theme_location == 'primary')
  11. {
  12. $items .= '<li id="nav-menu-item-side" class="menu-item">' .
  13. '<a href="#" class="open-sidebar" onclick="javascript:return false;" rel="nofollow">' .
  14. ' &nbsp; &nbsp; &nbsp;MORE &nbsp; &nbsp; &nbsp; <i class="icon-menu"></i>' .
  15. '</a>' .
  16. '</li>';
  17. }
  18. return $items;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment