HEX
Server:
System: Linux aac286ea486c 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User: root (0)
PHP: 8.2.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,disk_free_space,diskfreespace
Upload Files
File: /dom877180/wp-content/themes/splash/vc_templates/stm_features.php
<?php
$atts  = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );

/*
 * [features_bg_img] => 329
    [features_bg_color] =>
    [features_line_color] => #ec1919
    [features_icon] => 324
    [features_title] => Best Players
    [features_content] => Spilled sensationally that sanctimoniously gawked dear misheard inside
 * */
$imgBg = wp_get_attachment_image_src($atts["features_bg_img"]);
$icon = wp_get_attachment_image_src($atts["features_icon"]);
$colorBg = $atts["features_bg_color"];
$colorLine = ($atts["features_line_color"] != "") ? $atts["features_line_color"] : "#ffffff";
$title = $atts["features_title"];
$content = $atts["features_content"];

?>

<div class="stm-features-wrapp" style="background: url('<?php echo esc_url($imgBg[0]); ?>'); border-bottom: 5px solid <?php echo esc_attr($colorLine); ?>;">
	<div class="stm-features-icon">
		<img src="<?php echo esc_url($icon[0]); ?>" />
	</div>
	<div class="stm-feature-title heading-font"><?php echo esc_html($title); ?></div>
	<div class="stm-feature-content"><?php echo esc_html($content); ?></div>
</div>