AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.133.113.64   [ 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/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/www/wp-content/themes/CubicWP/inc/functions/header-functions.php
<?php
/**
* Header 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_Header {

    private static $instance;

    public function __construct() {
        add_action('wp_head', array($this, 'pingback_header'));
        //add_action('listmode_before_header', array($this, 'header_image'));
    }

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

    public function pingback_header() {
        if ( is_singular() && pings_open() ) {
            echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
        }
    }

    public function custom_logo() {
        if ( ! has_custom_logo() ) {return;}
        $listmode_custom_logo_id = get_theme_mod( 'custom_logo' );
        $listmode_logo = wp_get_attachment_image_src( $listmode_custom_logo_id , 'full' );
        $listmode_logo_src = $listmode_logo[0];
        return apply_filters( 'listmode_custom_logo', $listmode_logo_src );
    }

    public function site_title() {
        if ( is_front_page() && is_home() ) { ?>
                <h1 class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_home() ) { ?>
                <h1 class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_singular() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_category() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_tag() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_author() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_archive() && !is_category() && !is_tag() && !is_author() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_search() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } elseif ( is_404() ) { ?>
                <p class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php } else { ?>
                <h1 class="listmode-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
                <?php if ( !(listmode_get_option('hide_tagline')) ) { ?><p class="listmode-site-description"><?php bloginfo( 'description' ); ?></p><?php } ?>
        <?php }
    }

    public function header_image_destination() {
        $url = home_url( '/' );

        if ( listmode_get_option('header_image_destination') ) {
            $url = listmode_get_option('header_image_destination');
        }

        return apply_filters( 'listmode_header_image_destination', $url );
    }

    public function header_image_alt_text() {
        $header_image_alt_text = get_bloginfo( 'name' );

        if ( listmode_get_option('header_image_alt_text') ) {
            $header_image_alt_text = listmode_get_option('header_image_alt_text');
        }

        return apply_filters( 'listmode_header_image_alt_text', $header_image_alt_text );
    }

    public function header_image_markup() {
        if ( get_header_image() ) {
            if ( listmode_get_option('remove_header_image_link') ) {
                the_header_image_tag( array( 'class' => 'listmode-header-img', 'alt' => esc_attr( $this->header_image_alt_text() ) ) );
            } else { ?>
                <a href="<?php echo esc_url( $this->header_image_destination() ); ?>" rel="home" class="listmode-header-img-link"><?php the_header_image_tag( array( 'class' => 'listmode-header-img', 'alt' => esc_attr( $this->header_image_alt_text() ) ) ); ?></a>
            <?php }
        }
    }

    public function header_image_details() {
        $header_image_custom_title = '';
        if ( listmode_get_option('header_image_custom_title') ) {
            $header_image_custom_title = listmode_get_option('header_image_custom_title');
        }

        $header_image_custom_description = '';
        if ( listmode_get_option('header_image_custom_description') ) {
            $header_image_custom_description = listmode_get_option('header_image_custom_description');
        }

        if ( !(listmode_get_option('hide_header_image_details')) ) {
        if ( listmode_get_option('header_image_custom_text') ) {
            if ( $header_image_custom_title || $header_image_custom_description ) { ?>
                <div class="listmode-header-image-info">
                <div class="listmode-header-image-info-inside">
                    <?php if ( !(listmode_get_option('hide_header_image_title')) ) { ?><?php if ( $header_image_custom_title ) { ?><p class="listmode-header-image-site-title listmode-header-image-block"><?php echo wp_kses_post( force_balance_tags( do_shortcode($header_image_custom_title) ) ); ?></p><?php } ?><?php } ?>
                    <?php if ( !(listmode_get_option('hide_header_image_description')) ) { ?><?php if ( $header_image_custom_description ) { ?><p class="listmode-header-image-site-description listmode-header-image-block"><?php echo wp_kses_post( force_balance_tags( do_shortcode($header_image_custom_description) ) ); ?></p><?php } ?><?php } ?>
                </div>
                </div>
            <?php }
        } else { ?>
            <div class="listmode-header-image-info">
            <div class="listmode-header-image-info-inside">
                <?php if ( !(listmode_get_option('hide_header_image_title')) ) { ?><p class="listmode-header-image-site-title listmode-header-image-block"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p><?php } ?>
                <?php if ( !(listmode_get_option('hide_header_image_description')) ) { ?><p class="listmode-header-image-site-description listmode-header-image-block"><?php bloginfo( 'description' ); ?></p><?php } ?>
            </div>
            </div>
        <?php }
        }
    }

    public function header_image_wrapper() { ?>
        <div class="listmode-header-image listmode-clearfix">
        <?php $this->header_image_markup(); ?>
        <?php $this->header_image_details(); ?>
        </div>
        <?php
    }

    public function header_image() {
        if ( listmode_get_option('hide_header_image') ) { return; }
        if ( get_header_image() ) {
            $this->header_image_wrapper();
        }
    }

    public function logo_max_width() {
        $logo_max_width = '320px';

        if ( listmode_get_option('logo_max_width') ) {
            $logo_max_width = listmode_get_option('logo_max_width');
        }

        return apply_filters( 'listmode_logo_max_width', $logo_max_width );
    }

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

Anon7 - 2022
AnonSec Team