| Server IP : 184.75.252.78 / Your IP : 216.73.217.174 Web Server : LiteSpeed System : Linux dia.sitehostingserver.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 User : kikeda ( 1072) PHP Version : 8.2.31 Disable Function : popen,imap_mail,exec,passthru,system,shell_exec,proc_open,pcntl_exec,eval,allow_url_fopen,allow_url_include,mail,proc_get_status,get_cfg_var,disk_free_space,disk_total_space,diskfreespace,getmygid,getmyinode,getmypid,geymyuid,proc_nice,proc_terminate,proc_close,apache_child_terminate,chown,lchgrp,lchown,link,readlink,exif_read_data,read_exif_data,exif_thumbnail,highlight_file,show_source,php_strip_whitespace,get_meta_tags,dl,leak,pfsockopen,event_new,pcntl_signal,pcntl_alarm,register_tick_function,apache_setenv,define_syslog_variables,escapeshellarg,escapeshellcmd,ini_alter,ini_restore,inject_code,openlog,syslog,xmlrpc_entity_decode,phpAds_remoteInfo,phpAds_XmlRpc,phpAds_xmlrpcDecode,phpAds_xmlrpcEncode,chgrp,php_eval,safe_dir,root,ftok,egy_perl,symlink,wscript MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/kikeda/public_html/ballerleather.com/wp-content/themes/magzimum/ |
Upload File : |
<?php
/**
* Include Customizer
*/
require trailingslashit( get_template_directory() ) . 'magzimum-customizer/init.php';
/**
* Init customizer
*/
require trailingslashit( get_template_directory() ) . 'inc/init.php';
/**
* Magzimum functions and definitions
*
* @package Magzimum
*/
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! isset( $content_width ) ) {
$content_width = 1140; /* pixels */
}
if ( ! function_exists( 'magzimum_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 magzimum_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on Magzimum, use a find and replace
* to change 'magzimum' to the name of your theme in all the template files
*/
load_theme_textdomain( 'magzimum', 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' );
add_theme_support( "responsive-embeds" );
/**
* Setup Custom Logo Support for theme
* Supported from WordPress version 4.5 onwards
* More Info: https://make.wordpress.org/core/2016/03/10/custom-logo/
*/
if ( function_exists( 'has_custom_logo' ) ) {
add_theme_support( 'custom-logo' );
}
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
*/
add_theme_support( 'post-thumbnails' );
// Register image size for featured slider
add_image_size( 'magzimum-slider', 750, 315, true );
add_image_size( 'magzimum-thumb', 360, 150, true ); // Ratio 12:5
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'magzimum' ),
'top' => esc_html__( 'Top Menu', 'magzimum' ),
'social' => esc_html__( 'Social Menu', 'magzimum' ),
'notfound' => esc_html__( '404 Menu', 'magzimum' ),
) );
/*
* 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',
) );
/*
* Enable support for Post Formats.
* See http://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array(
'aside', 'image', 'video', 'quote', 'link',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'magzimum_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
'wp-head-callback' => 'magzimum_custom_background'
) ) );
/**
* Enable support for footer widgets
*/
add_theme_support( 'footer-widgets', 4 );
// Include supports
require get_template_directory() . '/inc/supports.php';
global $magzimum_default_theme_options;
$magzimum_default_theme_options = magzimum_get_default_theme_options();
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, icons, and column width.
*/
add_editor_style( array( '/assets/css/editor-style.css' ) );
// Gutenberg support
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'Light Black', 'magzimum' ),
'slug' => 'light-black',
'color' => '#434250',
),
array(
'name' => esc_html__( 'Orange', 'magzimum' ),
'slug' => 'orange',
'color' => '#ff3f00',
),
array(
'name' => esc_html__( 'Black', 'magzimum' ),
'slug' => 'black',
'color' => '#000',
),
array(
'name' => esc_html__( 'Grey', 'magzimum' ),
'slug' => 'grey',
'color' => '#ececfb',
),
));
add_theme_support( 'align-wide' );
add_theme_support( 'editor-font-sizes', array(
array(
'name' => esc_html__( 'small', 'magzimum' ),
'shortName' => esc_html__( 'S', 'magzimum' ),
'size' => 12,
'slug' => 'small'
),
array(
'name' => esc_html__( 'regular', 'magzimum' ),
'shortName' => esc_html__( 'M', 'magzimum' ),
'size' => 16,
'slug' => 'regular'
),
array(
'name' => esc_html__( 'larger', 'magzimum' ),
'shortName' => esc_html__( 'L', 'magzimum' ),
'size' => 36,
'slug' => 'larger'
),
array(
'name' => esc_html__( 'huge', 'magzimum' ),
'shortName' => esc_html__( 'XL', 'magzimum' ),
'size' => 48,
'slug' => 'huge'
)
));
add_theme_support('editor-styles');
add_theme_support( 'wp-block-styles' );
}
endif; // magzimum_setup
add_action( 'after_setup_theme', 'magzimum_setup' );
function magzimum_logo_migrate() {
$ver = get_theme_mod( 'logo_version', false );
// Return if update has already been run
if ( version_compare( $ver, '2' ) >= 0 ) {
return;
}
/**
* Get Theme Options Values
*/
$options = magzimum_get_option( 'site_logo' );
// If a logo has been set previously, update to use logo feature introduced in WordPress 4.5
if ( function_exists( 'the_custom_logo' ) ) {
if( isset( $options) && '' != $options) {
// Since previous logo was stored a URL, convert it to an attachment ID
$logo = attachment_url_to_postid( $options);
if ( is_int( $logo ) ) {
set_theme_mod( 'custom_logo', $logo );
}
}
// Update to match logo_version so that script is not executed continously
set_theme_mod( 'logo_version', '2' );
}
}
add_action( 'after_setup_theme', 'magzimum_logo_migrate' );
/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function magzimum_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Primary Sidebar', 'magzimum' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar', 'magzimum' ),
'id' => 'sidebar-2',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => esc_html__( 'Header Right Widget Area', 'magzimum' ),
'id' => 'sidebar-header-right-widget-area',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => esc_html__( 'Slider Right Widget Area', 'magzimum' ),
'id' => 'sidebar-slider-right-widget-area',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => esc_html__( 'Front Page Widget Area', 'magzimum' ),
'id' => 'sidebar-front-page-widget-area',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'magzimum_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function magzimum_scripts() {
wp_enqueue_style( 'magzimum-bootstrap', get_template_directory_uri() . '/assets/css/bootstrap.min.css', '', '3.3.4' );
wp_enqueue_style( 'magzimum-fontawesome', get_template_directory_uri() . '/third-party/font-awesome/css/font-awesome.min.css', '', '4.3' );
wp_enqueue_style( 'magzinum-google-fonts-arvo', '//fonts.googleapis.com/css?family=Arvo:400,700');
wp_enqueue_style( 'magzinum-google-fonts-balthazar', '//fonts.googleapis.com/css?family=Balthazar:400,700');
wp_enqueue_style( 'magzimum-style', get_stylesheet_uri() );
wp_enqueue_style( 'magzimum-mmenu-style', get_template_directory_uri() .'/third-party/mmenu/css/jquery.mmenu.css', '', '4.7.5' );
wp_enqueue_style( 'magzimum-owl-carousel-style', get_template_directory_uri() .'/third-party/owl-carousel/css/owl.carousel.css', '', '2.0' );
wp_enqueue_style( 'magzimum-responsive-style', get_template_directory_uri() .'/assets/css/responsive.css', '', '1.0.0' );
wp_enqueue_style( 'magzimum-blocks', get_template_directory_uri() . '/assets/css/blocks.css' );
wp_enqueue_script( 'magzimum-placeholder', get_template_directory_uri() . '/assets/js/jquery.placeholder.js', array( 'jquery' ), '2.0.9', true );
wp_enqueue_script( 'magzimum-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), '20120206', true );
$go_to_top = magzimum_get_option( 'go_to_top' );
if ( 1 == $go_to_top ) {
wp_enqueue_script( 'magzimum-goto-top', get_template_directory_uri() . '/assets/js/goto-top.js', array( 'jquery' ), '1.0.0', true );
}
wp_enqueue_script( 'magzimum-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20130115', true );
// Load the html5shiv.
wp_enqueue_script( 'magzimum-html5shiv', get_template_directory_uri() . '/assets/js/html5shiv.js', array(), '3.7.3' );
wp_script_add_data( 'magzimum-html5shiv', 'conditional', 'lt IE 9' );
// Load the html5shiv.
wp_enqueue_script( 'magzimum-respond', get_template_directory_uri() . '/assets/js/respond.js', array(), '' );
wp_script_add_data( 'magzimum-respond', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'magzimum-cycle2-script', get_template_directory_uri() . '/third-party/cycle2/js/jquery.cycle2.min.js', array( 'jquery' ), '2.1.6', true );
wp_enqueue_script( 'magzimum-easytabs-script', get_template_directory_uri() . '/third-party/easytabs/js/jquery.easytabs.min.js', array( 'jquery' ), '3.2.0', true );
wp_enqueue_script( 'magzimum-ticker-script', get_template_directory_uri() . '/third-party/ticker/jquery.easy-ticker.min.js', array( 'jquery' ), '2.0', true );
wp_enqueue_script( 'magzimum-owl-carousel-script', get_template_directory_uri() . '/third-party/owl-carousel/js/owl.carousel.min.js', array( 'jquery' ), '2.0', true );
wp_enqueue_script( 'magzimum-mmenu-script', get_template_directory_uri() . '/third-party/mmenu/js/jquery.mmenu.min.js', array( 'jquery' ), '4.7.5', true );
wp_enqueue_script( 'magzimum-custom-js', get_template_directory_uri() . '/assets/js/custom.js', array( 'jquery' ), '1.0.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'magzimum_scripts' );
/**
* Enqueue editor styles for Gutenberg
*
* @since Magzimum 1.0.0
*/
function magzimum_block_editor_styles() {
// Block styles.
wp_enqueue_style( 'magzimum-block-editor-style', get_theme_file_uri( '/assets/css/editor-blocks.css' ) );
// Add custom fonts.
wp_enqueue_style( 'magzimum-fonts', array(), null );
}
add_action( 'enqueue_block_editor_assets', 'magzimum_block_editor_styles' );
/**
* Enqueue admin scripts and styles.
*/
function magzimum_admin_scripts( $hook ) {
if ( 'widgets.php' == $hook ) {
wp_enqueue_media();
wp_enqueue_style( 'magzimum-widgets-style', get_template_directory_uri() .'/assets/css/widgets.css', '', '1.0.0' );
wp_enqueue_script( 'magzimum-widgets-script', get_template_directory_uri() . '/assets/js/widgets.js', array( 'jquery' ), '1.0.0' );
}
}
add_action( 'admin_enqueue_scripts', 'magzimum_admin_scripts' );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* custom css additions.
*/
require get_template_directory() . '/inc/hook/core.php';