%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/w/e/l/wellingtpa/www/wp-content/themes/kata/includes/ |
Upload File : |
<?php
/**
* Theme Customizer Options.
*
* @author ClimaxThemes
* @package Kata
* @since 1.0.0
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Kata_Customizer' ) ) {
/**
* Kata Customizer Functions.
*
* @author Climaxthemes
* @package Kata
* @since 1.0.0
*/
class Kata_Customizer {
/**
* Instance of this class.
*
* @since 1.0.0
* @access public
* @var Kata_Customizer
*/
public static $instance;
/**
* Provides access to a single instance of a module using the singleton pattern.
*
* @since 1.0.0
* @return object
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Define the core functionality of the plugin.
*
* @since 1.0.0
*/
public function __construct() {
$this->actions();
}
/**
* Define the core functionality of the plugin.
*
* @since 1.0.0
*/
public function actions() {
add_action( 'after_setup_theme', array( $this, 'setup_logo' ) );
}
/**
* Define the core functionality of the plugin.
*
* @since 1.0.0
*/
public function setup_logo() {
$defaults = array(
'height' => 100,
'width' => 400,
'flex-height' => true,
'flex-width' => true,
'header-text' => array( 'site-title', 'site-description' ),
);
add_theme_support( 'custom-logo', $defaults );
}
} // class
Kata_Customizer::get_instance();
}