HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/shootinschool/wp-content/themes/splash-child/partials/header/top-bar-socials.php
<?php
$top_bar_enable_socials = get_theme_mod('top_bar_enable_socials', true);

if(!$top_bar_enable_socials) {
	return false;
}

$top_bar_text_color = get_theme_mod('top_bar_text_color');
$style_opt = array();
if(!empty($top_bar_text_color)) {
	$style_opt['color'] = $top_bar_text_color;
}
$style = splash_generate_inline_style($style_opt);

$stm_socials = splash_socials();

if(!empty($stm_socials)): ?>
	<ul class="top-bar-socials stm-list-duty">
		<?php foreach($stm_socials as $key => $value): ?>
			<li>
				<a href="<?php echo esc_attr($value); ?>" target="_blank" <?php echo sanitize_text_field($style); ?>>
					<i class="fa fa-<?php echo esc_attr($key); ?>"></i>
				</a>
			</li>
		<?php endforeach; ?>
		<li><a href="tel:+4436564567">+44 3656 4567</a></li>
	</ul>
	
<?php endif; ?>