balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

social-profiles.php (1086B)


      1 <?php
      2 /**
      3  * Redux Pro Social Profiles Sample config.
      4  * For full documentation, please visit: http:https://devs.redux.io/
      5  *
      6  * @package Redux Pro
      7  */
      8 
      9 defined( 'ABSPATH' ) || exit;
     10 
     11 Redux::set_section(
     12 	$opt_name,
     13 	array(
     14 		'title'      => esc_html__( 'Social Profiles', 'your-textdomain-here' ),
     15 		'desc'       => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/premium/social-profiles.html" target="_blank">https://devs.redux.io/premium/social-profiles.html</a>',
     16 		'subtitle'   => esc_html__( 'Click an icon to activate it, drag and drop to change the icon order.', 'your-textdomain-here' ),
     17 		'subsection' => true,
     18 		'fields'     => array(
     19 			array(
     20 				'id'              => 'opt-social-profiles',
     21 				'type'            => 'social_profiles',
     22 				'title'           => esc_html__( 'Social Profiles', 'your-textdomain-here' ),
     23 				'subtitle'        => esc_html__( 'Click an icon to activate it, drag and drop to change the icon order.', 'your-textdomain-here' ),
     24 				'hide_widget_msg' => true,
     25 			),
     26 		),
     27 	)
     28 );