NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-plus
/
modules
/
breadcrumb
/
customizer
/
settings
/
Name
Size
Perms
Actions
📄 color.php
1,953 B
0644
Edit
|
Chmod
|
Delete
📄 typography.php
1,992 B
0644
Edit
|
Chmod
|
Delete
Editing: typography.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzPlusBreadCrumbTypo' ) ) { class TrendzPlusBreadCrumbTypo { private static $_instance = null; private $settings = null; private $selector = null; public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; } function __construct() { add_action( 'customize_register', array( $this, 'register' ), 15); } function register( $wp_customize ) { $wp_customize->add_section( new Trendz_Customize_Section( $wp_customize, 'site-breadcrumb-typo-section', array( 'title' => esc_html__('Typography', 'trendz-plus'), 'panel' => 'site-breadcrumb-main-panel', 'priority' => 15, ) ) ); if ( ! defined( 'TRENDZ_PRO_VERSION' ) ) { $wp_customize->add_control( new Trendz_Customize_Control_Separator( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[trendz-plus-site-breadcrumb-typo-separator]', array( 'type' => 'wdt-separator', 'section' => 'site-breadcrumb-typo-section', 'settings' => array(), 'caption' => TRENDZ_PLUS_REQ_CAPTION, 'description' => TRENDZ_PLUS_REQ_DESC, ) ) ); } } } } TrendzPlusBreadCrumbTypo::instance();
Cancel