<?php
/*
* Social site
*/
$sections[] = array(
'icon' => 'el-icon-magic',
'fields' => array(
array(
'id' => 'icon',
'type' => 'select',
'title' => esc_html__('Select Icon', 'magplus'),
'subtitle' => esc_html__('Select Desired Social Icon', 'magplus'),
'options' => array(
'fa-behance' => 'behance',
'fa-dribbble' => 'dribbble',
'fa-facebook' => 'facebook',
'fa-flickr' => 'flickr',
'fa-foursquare' => 'foursquare',
'fa-google-plus' => 'google-plus',
'fa-github' => 'github',
'fa-instagram' => 'instagram',
'fa-linkedin' => 'linkedin',
'fa-pinterest' => 'pinterest',
'fa-renren' => 'renren',
'fa-skype' => 'skype',
'fa-stumbleupon' => 'stumbleupon',
'fa-tumblr' => 'tumblr',
'fa-twitter' => 'twitter',
'fa-vimeo-square' => 'vimeo',
'fa-vk' => 'vk',
'fa-weibo' => 'weibo',
'fa-youtube' => 'youtube',
'fa-xing' => 'xing',
),
),
)
);
|