HEX
Server: LiteSpeed
System: Linux premium140.web-hosting.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
User: ukqcurpj (1011)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/ukqcurpj/public_html/wp-content/themes/masterstudy/vc_templates/vc_separator.php
<?php
/**
 * @var $atts;
 * @var string $el_width;
 * @var string $style;
 * @var string $color;
 * @var string $border_width;
 * @var string $accent_color;
 * @var string $el_class;
 * @var string $align;
 */

extract( // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
	shortcode_atts(
		array(
			'el_width'     => '',
			'style'        => '',
			'color'        => '',
			'border_width' => '',
			'accent_color' => '',
			'el_class'     => '',
			'align'        => 'align_center',
			'type'         => 'type_1',
			'css'          => '',
		),
		$atts
	)
);

echo do_shortcode( '[vc_text_separator layout="separator_no_text" align="' . $align . '" style="' . $style . '" color="' . $color . '" accent_color="' . $accent_color . '" border_width="' . $border_width . '" el_width="' . $el_width . '" el_class="' . $el_class . ' type="' . $type . '" css="' . $css . '"]' );