]+class="[^"]*menu-item-handle)/', $this->title( $item, $depth, $args ), $item_output ); $output .= preg_replace( // NOTE: Check this regex from time to time! '/(?=<(fieldset|p)[^>]+class="[^"]*field-move)/', $this->fields( $item, $depth, $args ), $item_output ); } protected function title( $item, $depth, $args = array(), $id = 0 ) { ob_start(); do_action( 'wp_nav_menu_item_custom_title', $item->ID, $item, $depth, $args, $id ); return ob_get_clean(); } protected function fields( $item, $depth, $args = array(), $id = 0 ) { ob_start(); do_action( 'wp_nav_menu_item_custom_fields', $item->ID, $item, $depth, $args, $id ); return ob_get_clean(); } }