removing br tags from oc menu nav items
authorAnthony Talarico <talarico@gaslightmedia.com>
Thu, 7 Jun 2018 14:48:06 +0000 (10:48 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Thu, 7 Jun 2018 14:48:06 +0000 (10:48 -0400)
lib/menu-walker.php

index 5d530ba..6141090 100644 (file)
@@ -65,7 +65,7 @@ class Glm_Theme_Off_Canvas_Walker extends Walker_Nav_Menu {
         if ( in_array( 'label', $classes ) ) {
             $item_html = preg_replace( '/<a[^>]*>(.*)<\/a>/iU', '<label>$1</label>', $item_html );
         }
-
+        $item_html = preg_replace("/<br>/", " ", $item_html);
         $output .= $item_html;
     }