📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-ajax.php
5.03 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-advanced.php
28.79 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-tags.php
21.98 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tools.php
3.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets.php
1.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: mfn.menu.js
/** * MuffinMenu * * Horizontal Multilevel Menu with WP MegaMenu Support * * 3.0 | Muffin Group */ (function( $ ){ "use strict"; $.fn.mfnMenu = function( options ){ var menu = $(this); var defaults = { addLast : false, arrows : false, delay : 100, hoverClass : 'hover', mobileInit : 768, responsive : true }; options = $.extend( defaults, options ); var init = function(){ // add '.submenu' class $( 'li:has(ul)', menu ).addClass( 'submenu' ); // append mobile toggle button $( 'li:has(ul)', menu ).append( '<span class="menu-toggle"></span>' ); // add '.mfn-megamenu-parent' class menu.children( 'li:has( ul.mfn-megamenu )' ).addClass( 'mfn-megamenu-parent' ); // add '.last-item' class $( '.submenu ul li:last-child', menu ).addClass( 'last-item' ); // add '.last' class if( options.addLast ) { $( '> li:last-child', menu ).addClass( 'last' ) .prev().addClass( 'last' ); } // appand submenu arrows if( options.arrows ) { $( 'li ul li:has(ul) > a', menu ).append( '<i class="menu-arrow icon-right-open"></i>' ); } }; var doMenu = function(){ if( ( $(window).width() >= options.mobileInit ) || ( ! options.responsive ) ){ // desktop -------------------------------- $( '> li, ul:not(.mfn-megamenu) li', menu ).hover(function() { $(this).stop(true,true).addClass( options.hoverClass ); $(this).children( 'ul' ).stop(true,true).fadeIn( options.delay ); }, function(){ $(this).stop(true,true).removeClass( options.hoverClass ); $(this).children( 'ul' ).stop(true,true).fadeOut( options.delay ); }); } else { // mobile --------------------------------- $( 'li', menu ).unbind('hover'); $( 'li > .menu-toggle', menu ).off('click').on('click', function(){ var el = $(this).closest('li'); if( el.hasClass( options.hoverClass ) ){ el.removeClass( options.hoverClass ) .children('ul').stop(true,true).fadeOut( options.delay ); } else { el.addClass( options.hoverClass ) .children('ul').stop(true,true).fadeIn( options.delay ); } }); } }; $(window).bind( 'resize', doMenu ); var __constructor = function(){ init(); doMenu(); }; __constructor(); }; })(jQuery);
Save