XylotrechusZ
<?php
if( dustrial_get_option( 'header_social_btn_target_blank' ) == 1 ){
$target = '_blank';
} else {
$target = '_self';
}
?>
<?php if ( is_array( dustrial_get_option( 'header_social_btn' ) ) ) { ?>
<ul>
<?php foreach ( dustrial_get_option('header_social_btn') as $key => $value) { ?>
<li><a href="<?php echo esc_url( $value['social_link'] ); ?>" target="<?php echo esc_attr( $target ); ?>"><i class="<?php echo esc_attr( $value['social_icon'] ); ?>"></i></a></li>
<?php } ?>
</ul>
<?php } ?>