'Theme Options', 'menu_slug' => 'theme-options', ) ); // Create section home CSF::createSection( $prefix, array( 'title' => 'Home', 'fields' => array( // A image Field array( 'id' => 'home_feature_img', 'type' => 'media', 'title' => 'Featured Image', ), // A text field array( 'id' => 'home_title_txt', 'type' => 'text', 'help' => 'Title', 'title' => 'Home Title', ), // A text field array( 'id' => 'home_title_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'Home Short Description', ), // A button field array( 'id' => 'home_title_button_txt', 'type' => 'text', 'help' => 'Button Label', 'title' => 'Home Title Button Name', ), // A button link field array( 'id' => 'home_title_button_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Home Title Button link', ), // A text field array( 'id' => 'home_bottom_hire_txt', 'type' => 'text', 'help' => 'Catch phrase like "Have Any Project In Mind?" ', 'title' => 'Hire Text', ), ) ) ); // Create section about CSF::createSection( $prefix, array( 'title' => 'About', 'fields' => array( // A image Field // array( // 'id' => 'about_img', // 'type' => 'media', // 'title' => 'About Image', // ), // A text field array( 'id' => 'about_title_txt', 'type' => 'text', 'help' => 'Title', 'title' => 'About Title', ), // A text field array( 'id' => 'About_title_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'About Short Description', ), array( 'id' => 'upload_cv', 'type' => 'upload', 'title' => 'Upload CV', 'desc'=> 'Upload Only .jpg, .jpeg, .Pdf, .doxc file' ), // A button field array( 'id' => 'about_title_button1_txt', 'type' => 'text', 'help' => 'Button Label', 'title' => 'About Title Button1 Name', ), // A button field link array( 'id' => 'about_title_button1_link', 'type' => 'text', 'help' => 'Link', 'title' => 'About Title Button1 link', ), // A button field array( 'id' => 'about_title_button2_txt', 'type' => 'text', 'help' => 'Button Label', 'title' => 'About Title Button2 Name', ), ) ) ); // Create section services CSF::createSection( $prefix, array( 'title' => 'Services', 'fields' => array( // A text field array( 'id' => 'service_title_txt', 'type' => 'text', 'help' => 'Title', 'title' => 'Service Title', ), // A textarea field array( 'id' => 'services_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'Services Short Description', ), ) ) ); // Create section portfolio CSF::createSection( $prefix, array( 'title' => 'Portfolio', 'fields' => array( // A text field array( 'id' => 'portfolio_title_txt', 'type' => 'text', 'help' => 'Title', 'title' => 'Portfolio Title', ), // A textarea field array( 'id' => 'portfolio_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'Portfolio Short Description', ), ) ) ); // Create section experience CSF::createSection( $prefix, array( 'title' => 'Experience', 'fields' => array( // A text field array( 'id' => 'experience_title_txt', 'type' => 'text', 'help' => 'Title', 'title' => 'Experience Title', ), // A textarea field array( 'id' => 'experience_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'Experience Short Description', ), ) ) ); // Create section Contact CSF::createSection( $prefix, array( 'title' => 'Contact', 'fields' => array( // A text field array( 'id' => 'contact_form', 'type' => 'text', 'help' => 'Copy and paste shortcode generated in contact form here.', 'title' => 'Contact Form Shortcode', 'desc' => 'Change double quotation with single quotation in shortcode.', ), // A text field array( 'id' => 'location_txt', 'type' => 'text', 'help' => 'Location', 'title' => 'Location', ), // A text field array( 'id' => 'email_txt', 'type' => 'text', 'help' => 'Email', 'title' => 'Email', ), // A text field array( 'id' => 'phone_no1_txt', 'type' => 'text', 'help' => 'Phone Number', 'title' => 'Phone Number1', ), // A textarea field array( 'id' => 'phone_no2_txt', 'type' => 'text', 'help' => 'Phone Number', 'title' => 'Phone Number2', ), ) ) ); // Create section footer CSF::createSection( $prefix, array( 'title' => 'Footer', 'fields' => array( // A textarea field array( 'id' => 'footer_desc_txt', 'type' => 'textarea', 'help' => 'Short Description', 'title' => 'Footer Short Description', ), // A social icon link array( 'id' => 'facebook_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Facebook link', ), // A social icon link array( 'id' => 'twitter_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Twitter link', ), // A social icon link array( 'id' => 'instagram_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Instagram link', ), // A social icon link array( 'id' => 'youtube_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Youtube link', ), // A social icon link array( 'id' => 'dribbble_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Dribbble link', ), // A social icon link array( 'id' => 'linkedin_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Linkedin link', ), // A social icon link array( 'id' => 'behance_link', 'type' => 'text', 'help' => 'Link', 'title' => 'Behance link', ), ) ) ); // Create section Image CSF::createSection( $prefix, array( 'title' => 'Images', 'fields' => array( // A image Field array( 'id' => 'default_img', 'type' => 'media', 'title' => 'Default Image', ), // A image Field array( 'id' => 'banner_img', 'type' => 'media', 'title' => 'Banner Image', ), ) ) ); }