/home/techb158/l2hypotheques.com/wp-content/themes/pylon/inc/metabox-and-options
Edit: /home/techb158/l2hypotheques.com/wp-content/themes/pylon/inc/metabox-and-options/team-metabox.php (4614B)
esc_attr__( 'Member Information', 'pylon' ),
'post_type' => 'pylon_team',
'data_type' => 'serialize',
) );
// Create Member Option section
CSF::createSection( $pylonTeamMeta, array(
'title' => esc_attr__( 'Designation & Short About', 'pylon' ),
'fields' => array(
array(
'id' => 'pylon_member_designation',
'type' => 'text',
'title' => esc_attr__( 'Designation', 'pylon' ),
'desc' => esc_attr__( 'Type member official designation here', 'pylon' ),
),
array(
'id' => 'pylon_member_short_desc',
'type' => 'wp_editor',
'title' => esc_attr__( 'Short Overview', 'pylon' ),
'desc' => esc_attr__( 'Type member short description here', 'pylon' ),
'tinymce' => true,
'quicktags' => true,
'media_buttons' => false,
'height' => '140px',
),
array(
'id' => 'pylon_member_expertise',
'type' => 'wp_editor',
'title' => esc_attr__( 'Area of Expertise', 'pylon' ),
'desc' => esc_attr__( 'Type member Area of Expertise here', 'pylon' ),
'tinymce' => true,
'quicktags' => true,
'media_buttons' => false,
'height' => '140px',
),
),
) );
CSF::createSection( $pylonTeamMeta, array(
'title' => esc_attr__( 'Additional Information', 'pylon' ),
'fields' => array(
array(
'id' => 'pylon_member_progress',
'type' => 'group',
'title' => 'Group',
'fields' => array(
array(
'id' => 'pylon_memner_progress_title',
'type' => 'text',
'title' => esc_attr__( 'Title', 'pylon' ),
'default' => 'Loan Process',
),
array(
'id' => 'pylon_memner_progress_number',
'type' => 'number',
'title' => esc_attr__( 'Number', 'pylon' ),
'default' => 50,
),
),
),
array(
'id' => 'pylon_memner_gallery',
'type' => 'gallery',
'title' => esc_attr__( 'Image Gallery', 'pylon' ),
'add_title' => esc_attr__( 'Add Images', 'pylon' ),
'edit_title' => esc_attr__( 'Edit Images', 'pylon' ),
'clear_title' => esc_attr__( 'Remove Images', 'pylon' ),
),
),
) );
CSF::createSection( $pylonTeamMeta, array(
'title' => esc_attr__( 'Social Profiles', 'pylon' ),
'fields' => array(
array(
'id' => 'pylon_member_social_profile',
'type' => 'group',
'title' => esc_attr__( 'Member Social Icons', 'pylon' ),
'desc' => esc_attr__( 'Add member social profile icons here.', 'pylon' ),
'button_title' => esc_attr__( 'Add Social Profile', 'pylon' ),
'fields' => array(
array(
'id' => 'pylon_site_name',
'type' => 'text',
'title' => esc_attr__( 'Site Name', 'pylon' ),
'desc' => esc_attr__( 'Type social site name here.', 'pylon' ),
),
array(
'id' => 'pylon_site_icon',
'type' => 'icon',
'title' => esc_attr__( 'Icon', 'pylon' ),
'desc' => esc_attr__( 'Select icon', 'pylon' ),
),
array(
'id' => 'pylon_site_link',
'type' => 'text',
'title' => esc_attr__( 'Link', 'pylon' ),
'desc' => esc_attr__( 'Type social site url here.', 'pylon' ),
),
),
'default' => array(
array(
'pylon_site_name' => esc_attr__( 'Facebook', 'pylon' ),
'pylon_site_icon' => 'fa fa-facebook',
'pylon_site_link' => '#',
),
),
),
),
) );