HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/jwitte/rednails.studio/wwwroot/wp-content/themes/glow/inc/customizer-controls.php
<?php
class Glow_Group_Settings_Heading_Control extends WP_Customize_Control {
	public $settings = 'blogname';
	public $description = '';
	public $title = '';
	public $group = '';
	public $type = '';
	/**
	 * Render the description and title for the sections
	 */
	public function render_content() {
		switch ( $this->type ) {
			default:
			case 'group_heading_top':
				echo '<h4 class="customizer-group-heading group-heading-top">' . $this->title . '</h4>';
				if ( $this->description != '' ) {
					echo '<p class="customizer-group-subheading">' . $this->description . '</p>';
				}
				break;
			case 'group_heading':
				echo '<h4 class="customizer-group-heading">' . $this->title . '</h4>';
				if ( $this->description != '' ) {
					echo '<p class="customizer-group-subheading">' . $this->description . '</p>';
				}
				break;
			case 'group_heading_message':
				echo '<h4 class="customizer-group-heading-message">' . $this->title . '</h4>';
				if ( $this->description != '' ) {
					echo '<p class="customizer-group-heading-message">' . $this->description . '</p>';
				}
				break;
			case 'hr' :
				echo '<hr />';
				break;
		}
	}
}