navasena/wp-content/themes/thinkai/includes/resource/options/social_setting.php

35 lines
1.2 KiB
PHP
Raw Normal View History

2024-07-31 13:12:38 +07:00
<?php
return array(
'title' => esc_html__( 'Social Setting', 'thinkai' ),
'id' => 'social_setting',
'desc' => '',
'icon' => 'el el-share',
'fields' => array(
array(
'id' => 'social_media_tabs_v3',
'type' => 'repeater',
'icon' => 'el-icon-thumbs-up',
'title' => __('Add Social Media', 'thinkai'),
'group_values' => true,
'sortable' => true,
'fields' => array(
array(
'id' => 'title_social_media',
'type' => 'text',
'title' => __('Title', 'thinkai'),
),
array(
'id' => 'select_social_media',
'type' => 'select',
'data' => get_fontawesome_icons(),
'title' => esc_html__('Choose Social Media', 'thinkai'),
),
array(
'id' => 'link_social_media',
'type' => 'text',
'title' => __('Link', 'thinkai'),
),
)
),
),
);