Elementor\Widget_Social_Icons::render PHP Method

render() protected method

protected render ( )
    protected function render()
    {
        ?>
		<div class="elementor-social-icons-wrapper">
			<?php 
        foreach ($this->get_settings('social_icon_list') as $item) {
            $social = str_replace('fa fa-', '', $item['social']);
            $target = $item['link']['is_external'] ? ' target="_blank"' : '';
            ?>
				<a class="elementor-icon elementor-social-icon elementor-social-icon-<?php 
            echo esc_attr($social);
            ?>
" href="<?php 
            echo esc_attr($item['link']['url']);
            ?>
"<?php 
            echo $target;
            ?>
>
					<i class="<?php 
            echo $item['social'];
            ?>
"></i>
				</a>
			<?php 
        }
        ?>
		</div>
		<?php 
    }