| Server IP : 185.68.16.147 / Your IP : 216.73.216.209 Web Server : Apache System : Linux web789.default-host.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : jt292766 ( 1182) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/jt292766/konstruktbud.com.ua/www/wp-content/themes/betheme/vc_templates/ |
Upload File : |
<?php
$title = '';
extract(shortcode_atts(array(
'title' => __("Section", "js_composer")
), $atts));
$css_class = apply_filters(VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, 'wpb_accordion_section group', $this->settings ['base'], $atts);
// output -----
echo '<div class="question '. esc_attr($css_class) .'">';
echo '<div class="title"><i class="icon-plus acc-icon-plus"></i><i class="icon-minus acc-icon-minus"></i>'. esc_html($title) .'</div>';
echo '<div class="answer">';
if($content == '' || $content == ' '){
echo esc_html__("Empty section. Edit page to add content here.", "js_composer");
} else {
echo wpb_js_remove_wpautop($content);
}
echo '</div>';
echo '</div>';