HEX
Server: LiteSpeed
System: Linux server318.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: joyfejor (3859)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/joyfejor/www/wp-content/themes/onepress/inc/customize-configs/site-identity.php
<?php
/**
 * Site Identity.
 */

$is_old_logo = get_theme_mod( 'onepress_site_image_logo' );

$wp_customize->add_setting( 'onepress_hide_sitetitle',
	array(
		'sanitize_callback' => 'onepress_sanitize_checkbox',
		'default'           => $is_old_logo ? 1 : 0,
	)
);
$wp_customize->add_control(
	'onepress_hide_sitetitle',
	array(
		'label'   => esc_html__( 'Hide site title', 'onepress' ),
		'section' => 'title_tagline',
		'type'    => 'checkbox',
	)
);

$wp_customize->add_setting( 'onepress_hide_tagline',
	array(
		'sanitize_callback' => 'onepress_sanitize_checkbox',
		'default'           => $is_old_logo ? 1 : 0,
	)
);
$wp_customize->add_control(
	'onepress_hide_tagline',
	array(
		'label'   => esc_html__( 'Hide site tagline', 'onepress' ),
		'section' => 'title_tagline',
		'type'    => 'checkbox',

	)
);

// Retina Logo
$wp_customize->add_setting( 'onepress_retina_logo',
	array(
		'sanitize_callback' => 'sanitize_text_field',
		'default'           => '',
		'transport'         => 'postMessage'
	)
);
$wp_customize->add_control(
	new WP_Customize_Image_Control(
		$wp_customize,
		'onepress_retina_logo',
		array(
			'label'   => esc_html__( 'Retina Logo', 'onepress' ),
			'section' => 'title_tagline',
		)
	)
);


// Logo Width
$wp_customize->add_setting( 'onepress_logo_height',
	array(
		'sanitize_callback' => 'sanitize_text_field',
		'default'           => '',
		'transport'         => 'postMessage'
	)
);
$wp_customize->add_control(
	'onepress_logo_height',
	array(
		'label'   => esc_html__( 'Logo Height In Pixel', 'onepress' ),
		'section' => 'title_tagline',
	)

);