NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
trendz-pro
/
modules
/
breadcrumb
/
customizer
/
settings
/
Name
Size
Perms
Actions
📄 color.php
6,462 B
0644
Edit
|
Chmod
|
Delete
📄 typography.php
2,333 B
0644
Edit
|
Chmod
|
Delete
Editing: typography.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if( !class_exists( 'TrendzProBreadCrumbTypo' ) ) { class TrendzProBreadCrumbTypo { 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 ) { /** * Option :Breadcrumb Title Typo */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_title_typo]', array( 'type' => 'option', ) ); $wp_customize->add_control( new Trendz_Customize_Control_Typography( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_title_typo]', array( 'type' => 'wdt-typography', 'section' => 'site-breadcrumb-typo-section', 'label' => esc_html__( 'Title Typography', 'trendz-pro'), ) ) ); /** * Option :Breadcrumb Typo */ $wp_customize->add_setting( TRENDZ_CUSTOMISER_VAL . '[breadcrumb_typo]', array( 'type' => 'option', ) ); $wp_customize->add_control( new Trendz_Customize_Control_Typography( $wp_customize, TRENDZ_CUSTOMISER_VAL . '[breadcrumb_typo]', array( 'type' => 'wdt-typography', 'section' => 'site-breadcrumb-typo-section', 'label' => esc_html__( 'Breadcrumb Typography', 'trendz-pro'), ) ) ); } } } TrendzProBreadCrumbTypo::instance();
Cancel