フォーラムへの返信

1件の返信を表示中 - 1 - 1件目 (全1件中)
  • トピック投稿者 s-nir

    (@s-nir)

    自己解決いたしましたのでトピックを解決済みとさせて頂きます。

    function start_el( &$output, $item, $depth, $args ) {
          if (in_array('menu-item-has-children', $item->classes)) {
            $output .= "\n".'<li data-uk-dropdown>';
            $output .= $this->create_a_tag($item, $depth, $args);
          }
          else {
            $output .= '<li>';
            $output .= $this->create_a_tag($item, $depth, $args);
          }
      }
      function end_el( &$output, $item, $depth, $args ) {
          if (in_array('menu-item-has-children', $item->classes)) {
            $output .= "\n".'</li>';
          }
          else {
            $output .= "\n".'</li>';
          }
      }
1件の返信を表示中 - 1 - 1件目 (全1件中)