OwlCyberSecurity - MANAGER
Edit File: class-rt-group-title.php
<?php /** * Rishi Group title * * @package Rishi */ /** * Implement group title */ class Rishi_Group_Title extends WP_Customize_Section { /** * Type of this section. * * @var string */ public $type = 'rt-group-title'; /** * Special categorization for the section. * * @var string */ public $kind = 'default'; /** * Output */ public function render() { $description = $this->description; $class = 'accordion-section rt-group-title'; if ('divider' === $this->kind) { $class = 'accordion-section rt-group-divider'; } if ('option' === $this->kind) { $class = 'accordion-section rt-option-title'; } ?> <li id="accordion-section-<?php echo esc_attr($this->id); ?>" class="<?php echo esc_attr($class); ?>" data-group="<?php echo esc_attr( sanitize_title( $this->title ) ); ?>"> <?php if (! empty($this->title) && strpos($this->title, '</div>') === false) { ?> <h3><?php echo $this->title; ?></h3> <?php } else { ?> <?php echo $this->title; ?> <?php } ?> <?php if (!empty($description)) { ?> <span class="description"><?php echo esc_html($description); ?></span> <?php } ?> </li> <?php } }