File manager - Edit - C:/inetpub/vhosts/alsawaripharma.com/icte-dubai.com/wp-content/themes/blossom-coach/inc/customizer/appearance.php
Back
<?php /** * Blossom Coach Appearance Settings * * @package Blossom_Coach */ function blossom_coach_customize_register_appearance( $wp_customize ) { /** Appearance Settings */ $wp_customize->add_panel( 'appearance_settings', array( 'priority' => 50, 'capability' => 'edit_theme_options', 'title' => __( 'Appearance Settings', 'blossom-coach' ), 'description' => __( 'Customize Typography, Background Image & Color.', 'blossom-coach' ), ) ); /** Typography */ $wp_customize->add_section( 'typography_settings', array( 'title' => __( 'Typography', 'blossom-coach' ), 'priority' => 20, 'panel' => 'appearance_settings', ) ); /** Primary Font */ $wp_customize->add_setting( 'primary_font', array( 'default' => 'Nunito Sans', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'primary_font', array( 'label' => __( 'Primary Font', 'blossom-coach' ), 'description' => __( 'Primary font of the site.', 'blossom-coach' ), 'section' => 'typography_settings', 'choices' => blossom_coach_get_all_fonts(), ) ) ); /** Secondary Font */ $wp_customize->add_setting( 'secondary_font', array( 'default' => 'Nunito', 'sanitize_callback' => 'blossom_coach_sanitize_select' ) ); $wp_customize->add_control( new Blossom_Coach_Select_Control( $wp_customize, 'secondary_font', array( 'label' => __( 'Secondary Font', 'blossom-coach' ), 'description' => __( 'Secondary font of the site.', 'blossom-coach' ), 'section' => 'typography_settings', 'choices' => blossom_coach_get_all_fonts(), ) ) ); /** Move Background Image section to appearance panel */ $wp_customize->get_section( 'colors' )->panel = 'appearance_settings'; $wp_customize->get_section( 'colors' )->priority = 10; $wp_customize->get_section( 'background_image' )->panel = 'appearance_settings'; $wp_customize->get_section( 'background_image' )->priority = 15; } add_action( 'customize_register', 'blossom_coach_customize_register_appearance' );
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Generation time: 0.1 |
proxy
|
phpinfo
|
Settings