| Server IP : 60.247.133.247 / Your IP : 216.73.217.108 Web Server : Apache System : Linux ebs-119054 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64 User : goodwill ( 65985) PHP Version : 8.2.20 Disable Function : link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/wwwroot/goodwill/wwwroot/wp-content/themes/GoodWill/inc/mods/mega-menu/ |
Upload File : |
<?php /** * Mega menu bootstrap. * * @since 3.0.0 * * @package The7\Modules */ defined( 'ABSPATH' ) || exit; // Admin hooks. $mega_menu_admin = new The7_Admin_Mega_Menu(); add_filter( 'wp_setup_nav_menu_item', array( $mega_menu_admin, 'wp_setup_nav_menu_item' ) ); add_action( 'wp_update_nav_menu_item', array( $mega_menu_admin, 'wp_update_nav_menu_item' ), 10, 2 ); add_action( 'admin_print_styles-nav-menus.php', array( $mega_menu_admin, 'admin_enqueue_scripts' ) ); add_action( 'admin_print_footer_scripts-nav-menus.php', array( $mega_menu_admin, 'output_popup_template' ) ); add_action( 'wp_ajax_the7_render_mega_menu_settings', array( $mega_menu_admin, 'ajax_render_mega_menu_settings' ) ); add_action( 'admin_enqueue_scripts', [ $mega_menu_admin, 'add_svg_support_in_megamenu'] ); // Front hooks. $mega_menu_front = new The7_Mega_Menu(); add_action( 'presscore_primary_nav_menu_before', array( $mega_menu_front, 'add_hooks' ) ); add_action( 'presscore_primary_nav_menu_after', array( $mega_menu_front, 'remove_hooks' ) );