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/options.php
<?php
/**
 * Site Options
 *
 * @package onepress
 */

$wp_customize->add_panel(
	'onepress_options',
	array(
		'priority'       => 5,
		'capability'     => 'edit_theme_options',
		'theme_supports' => '',
		'title'          => esc_html__( 'Theme Options', 'onepress' ),
		'description'    => '',
	)
);


if ( ! function_exists( 'wp_get_custom_css' ) ) {  // Back-compat for WordPress < 4.7.

	// Custom CSS Settings.
	$wp_customize->add_section(
		'onepress_custom_code',
		array(
			'title' => __( 'Custom CSS', 'onepress' ),
			'panel' => 'onepress_options',
		)
	);


	$wp_customize->add_setting(
		'onepress_custom_css',
		array(
			'default'           => '',
			'sanitize_callback' => 'onepress_sanitize_css',
			'type'              => 'option',
		)
	);

	$wp_customize->add_control(
		'onepress_custom_css',
		array(
			'label'   => __( 'Custom CSS', 'onepress' ),
			'section' => 'onepress_custom_code',
			'type'    => 'textarea',
		)
	);
} else {
	$wp_customize->get_section( 'custom_css' )->priority = 994;
}