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 . '"]' );