?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/kerge/framework-customizations/theme/options/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/kerge/framework-customizations/theme

?? Viewing: advanced.php

<?php if ( ! defined( 'FW' ) ) {
	die( 'Forbidden' );
}

$options = array(
	'advanced' => array(
		'title'   => esc_html__( 'Advanced', 'kerge' ),
		'type'    => 'tab',
		'options' => array(
			'share_buttons' => array(
				'title'   => esc_html__( 'Share Buttons Settings', 'kerge' ),
				'type'    => 'box',
				'options' => array(
					'share_buttons_list' => array(
					    'type'  => 'checkboxes',
					    'value' => array(
					        'facebook' => true,
					        'twitter' => true,
					        'linkedin' => true,
					        'digg' => true,
					    ),
					    'attr'  => array( 'class' => 'custom-class', 'data-foo' => 'bar' ),
					    'label' => esc_html__('Buttons that will be displayed on Portfolio project pages and Blog posts.', 'kerge'),
					    'desc'  => '',
					    'choices' => array(
					        'facebook' => esc_html__('Facebook', 'kerge'),
					        'twitter' => esc_html__('Twitter', 'kerge'),
					        'linkedin' => esc_html__('LinkedIn', 'kerge'),
					        'digg' => esc_html__('digg', 'kerge'),
					    ),
					    'inline' => false,
					),
				)
			),
		)
	)
);


??

??