"One","2" => "Two","3" => "Three","4" => "Four","5" => "Five", "6" => "Six","7" => "Seven","8" => "Eight","9" => "Nine","10" => "Ten"); $numberfront_array = array("1" => "One","2" => "Two","3" => "Three","4" => "Four","5" => "Five", "6" => "Six","7" => "Seven","8" => "Eight","9" => "Nine","10" => "Ten","11" => "Eleven", "12" => "Twelve"); // Fonts Array $fonts_array = array( "lora"=>"Lora", "raleway"=>"Raleway","atomic+Age"=>"Atomic+Age","marck+Script"=>"Marck+Script", ); // Test data $slider_array = array("nivo" => "Nivo Slider","noslider" => "No Slider"); // Multicheck Defaults $multicheck_defaults = array("one" => "1","five" => "1"); // Background Defaults $background_defaults = array('color' => '', 'image' => '', 'repeat' => 'repeat','position' => 'top center','attachment'=>'scroll'); // Editor Defaults $wp_editor_settings = array( 'wpautop' => true, // Default 'textarea_rows' => 5, 'media_buttons' => 'true', 'tinymce' => array( 'plugins' => 'wordpress' ) ); // Pull all the categories into an array $options_categories = array(); $options_categories_obj = get_categories(); foreach ($options_categories_obj as $category) { $options_categories[$category->cat_ID] = $category->cat_name; } // Pull all the pages into an array $options_pages = array(); $options_pages_obj = get_pages('sort_column=post_parent,menu_order'); $options_pages[''] = 'Select a page:'; foreach ($options_pages_obj as $page) { $options_pages[$page->ID] = $page->post_title; } // If using image radio buttons, define a directory path $imagepath = get_template_directory_uri() . '/admin/images/'; $options = array(); $options[] = array( "name" => __('Front Page', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Front Page Layout', 'isis'), "desc" => "Select a front page layout", "id" => "layout1_images","layout2_images", "std" => "layout1", "type" => "images", "options" => array( 'layout1' => $imagepath.'layout1.png', 'layout2' => $imagepath.'layout2.png', )); $options[] = array( "name" => __('Custom logo image', 'isis'), "desc" => __('You can upload custom image for your website logo (optional).', 'isis'), "id" => "isis_logo_image", "type" => "upload"); $options[] = array( "name" => __('Home Page Callout section', 'isis'), "id" => "isis_welcome", "desc" => __('If you leave this field empty, the callout section will not be displayed.','isis'), "std" => "

Welcome!

You need to configure your Home Page!

Please visit Theme Options Page", "type" => "editor", 'settings' => $wp_editor_settings); $options[] = array( 'name' => __('Latest Blog Title', 'isis'), 'desc' => __('Title For the Latest Blog', 'isis'), 'id' => 'latest_blog', 'std' => 'Latest Blog', 'type' => 'text'); $options[] = array( "name" => __('Enable Latest Posts(layout1)', 'isis'), "desc" => "Enable the posts under the blocks on homepage. You ca only use options below when this option is tick.", "id" => "latstpst_checkbox", "std" => "1", "type" => "checkbox"); $options[] = array( "name" => __('Show Posts from a certain Category(layout1)', 'isis'), "desc" => "Show posts from certain category on frontpage. Select the category below.", "id" => "frontcat_checkbox", "std" => "0", "type" => "checkbox"); $options[] = array( "name" => __('Front Page Posts Category(layout1)', 'isis'), "desc" => "Select a Category For Front Page.", "id" => "front_cat", "type" => "select", "class" => "mini", "options" => $options_categories); $options[] = array( "name" => __('Number of Front page Posts(layout1)', 'isis'), "desc" => "Select the Number of Posts.", "id" => "frontnum_select", "std" => "4", "type" => "select", "class" => "mini", //mini, tiny, small "options" => $numberfront_array); $options[] = array( "name" => __('Footer Content', 'isis'), "desc" => "Footer Text.", "id" => "footer_textarea", "std" => "", "type" => "textarea"); //Color & Font $options[] = array( "name" => __('Color & Font', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Select Font', 'isis'), "desc" => "", "id" => "font_select", "std" => "raleway", "type" => "select", "class" => "mini", "options" => $fonts_array); $options[] = array( "name" => __('menu', 'isis'), "desc" => "Change footer menu background color", "id" => "menu_colorpicker", "std" => "#474544", "type" => "color"); $options[] = array( "name" => __('Title Color', 'isis'), "desc" => "Change all element titel color", "id" => "title_colorpicker", "std" => "#e54222", "type" => "color"); $options[] = array( "name" => __('hover Color', 'isis'), "desc" => "Change all element hover color", "id" => "hover_colorpicker", "std" => "#ff4533", "type" => "color"); $options[] = array( "name" => __('Services Bloks', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Enable Blocks', 'isis'), "desc" => "Enable the homepage blocks.", "id" => "blocks_checkbox", "std" => "1", "type" => "checkbox"); $options[] = array( "name" => __('Block 1 Logo', 'isis'), "desc" => 'Icon name, for example: fa-heart List of all avaialable icons and their names can be found at FontAwesome.', "id" => "block1_logo", "std" => "fa-heart", "type" => "text"); $options[] = array( "name" => __('Block 1 Heading', 'isis'), "desc" => "", "id" => "block1_text", "std" => "We Work Efficiently", "type" => "text"); $options[] = array( "name" => __('Block 1 Text', 'isis'), "desc" => "", "id" => "block1_textarea", "std" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac.", "type" => "textarea"); $options[] = array( "name" => __('Block 1 Link', 'isis'), "desc" => "", "id" => "block1_link", "std" => "http://wordpress.org/", "type" => "text"); $options[] = array( "name" => __('Block 1 Logo', 'isis'), "desc" => 'Icon name, for example: fa-heart List of all avaialable icons and their names can be found at FontAwesome.', "id" => "block2_logo", "std" => " fa-volume-up", "type" => "text"); $options[] = array( "name" => __('Block 2 Heading', 'isis'), "desc" => "", "id" => "block2_text", "std" => "24/7 Live Support", "type" => "text"); $options[] = array( "name" => __('Block 2 Text', 'isis'), "desc" => "", "id" => "block2_textarea", "std" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac. Sed ultrices leo.", "type" => "textarea"); $options[] = array( "name" => __('Block 2 Link', 'isis'), "desc" => "", "id" => "block2_link", "std" => "", "type" => "text"); $options[] = array( "name" => __('Block 3 Logo', 'isis'), "desc" => 'Icon name, for example: fa-heart List of all avaialable icons and their names can be found at FontAwesome.', "id" => "block3_logo", "std" => "fa-fighter-jet", "type" => "text"); $options[] = array( "name" => __('Block 3 Heading', 'isis'), "desc" => "", "id" => "block3_text", "std" => "Confide", "type" => "text"); $options[] = array( "name" => __('Block 3 Text', 'isis'), "desc" => "", "id" => "block3_textarea", "std" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibendum ac. ", "type" => "textarea"); $options[] = array( "name" => __('Block 3 Link', 'isis'), "desc" => "", "id" => "block3_link", "std" => "", "type" => "text"); $options[] = array( "name" => __('Block 1 Logo', 'isis'), "desc" => 'Icon name, for example: fa-heart List of all avaialable icons and their names can be found at FontAwesome.', "id" => "block4_logo", "std" => "fa-cogs", "type" => "text"); $options[] = array( "name" => __('Block 4 Heading', 'isis'), "desc" => "", "id" => "block4_text", "std" => "Gurantee Like No Other", "type" => "text"); $options[] = array( "name" => __('Block 4 Text', 'isis'), "desc" => "", "id" => "block4_textarea", "std" => "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum.", "type" => "textarea"); $options[] = array( "name" => __('Block 4 Link', 'isis'), "desc" => "", "id" => "block4_link", "std" => "", "type" => "text"); //Recent work $options[] = array( "name" => __('Recent work', 'isis'), "desc" => "More recent work option in Pro version", "type" => "heading"); $options[] = array( "name" => __('Enable Recent work', 'isis'), "desc" => "Enable the homepage recent work.image size 300X222 px(More recent work post option in Pro version)", "id" => "recentwork_checkbox", "std" => "1", "type" => "checkbox"); $options[] = array( 'name' => __('Title', 'isis'), 'desc' => __('Title of the recent work slider', 'isis'), 'id' => 'recent_work', 'std' => 'Our Work', 'type' => 'text'); $options[] = array( 'name' => __('Image 1', 'isis'), 'desc' => __('First image', 'isis'), 'id' => 'recent1', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/bg2.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'recenttitle1', 'std' => 'Beautiful Photo', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'recentdesc1', 'std' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'recenturl1', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Image 2', 'isis'), 'desc' => __('2nd image', 'isis'), 'id' => 'recent2', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/bg4.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'recenttitle2', 'std' => 'Beautiful Photo', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'recentdesc2', 'std' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'recenturl2', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Image 3', 'isis'), 'desc' => __('3rd image', 'isis'), 'id' => 'recent3', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/bg5.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'recenttitle3', 'std' => 'Beautiful Photo', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'recentdesc3', 'std' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'recenturl3', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Image 4', 'isis'), 'desc' => __('4th image', 'isis'), 'id' => 'recent4', 'class' => '', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'recenttitle4', 'std' => 'Beautiful Photo', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'recentdesc4', 'std' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'recenturl4', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Image 5', 'isis'), 'desc' => __('5th image', 'isis'), 'id' => 'recent5', 'class' => '', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'recenttitle5', 'std' => 'Beautiful Photo', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'recentdesc5', 'std' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy.', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'recenturl5', 'std' => '', 'type' => 'text'); //Our Client $options[] = array( "name" => __('Our Client', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Our Client', 'isis'), 'desc' => __('Image size must be 223px*113px. If you leave this field empty, the our client section will not be displayed.', 'isis'), 'type' => 'info' ); $options[] = array( 'name' => __('Our Client Title', 'isis'), 'desc' => __('Title of the Our Client', 'isis'), 'id' => 'our_client', 'std' => 'Our Client', 'type' => 'text'); $options[] = array( 'name' => __('Client One', 'isis'), 'desc' => __('Upload image for client one ', 'isis'), 'id' => 'client1', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/logo1.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'clienturl1', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Client 2', 'isis'), 'desc' => __('Upload image for client 2 ', 'isis'), 'id' => 'client2', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/logo2.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'clienturl2', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Client 3', 'isis'), 'desc' => __('Upload image for client 3 ', 'isis'), 'id' => 'client3', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/logo3.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'clienturl3', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Client 4', 'isis'), 'desc' => __('Upload image for client 4 ', 'isis'), 'id' => 'client4', 'class' => '', 'std' =>get_template_directory_uri().'/images/demo/logo4.png', 'type' => 'upload'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'clienturl4', 'std' => '', 'type' => 'text'); //slider $options[] = array( "name" => __('Slider', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Select Slider', 'isis'), "desc" => "", "id" => "slider_select", "std" => "nivo", "type" => "select", "class" => "mini", //mini, tiny, small "options" => $slider_array); $options[] = array( "name" => __('Slider Speed', 'isis'), "desc" => "milliseconds", "id" => "sliderspeed_text", "std" => "3000", "class" => "mini", "type" => "text"); $options[] = array( "name" => __('Number of Slides', 'isis'), "desc" => "", "id" => "number_select", "std" => "5", "type" => "select", "class" => "mini", //mini, tiny, small "options" => $number_array); $options[] = array( "name" => __('Slider Content', 'isis'), "desc" => "Show Slider text", "id" => "sldrtxt_checkbox", "std" => "1", "type" => "checkbox"); $options[] = array( 'name' => __('Using the Slider', 'options_framework_theme'), 'desc' => __('This Slider supports upto 5 Images. To show only 3 Slides in the slider, upload only 3 images. Leave the rest Blank. For best results, upload images of size 1180x500px.', 'options_framework_theme'), 'type' => 'info'); $options[] = array( 'name' => __('Slider Image 1', 'options_framework_theme'), 'desc' => __('First Slide', 'options_framework_theme'), 'id' => 'slide1', 'class' => '', "std" =>get_template_directory_uri().'/images/work_img1.jpg', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'slidetitle1', 'std' => '', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'slidedesc1', 'std' => '', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'slideurl1', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Slider Image 2', 'options_framework_theme'), 'desc' => __('Second Slide', 'options_framework_theme'), 'class' => '', 'id' => 'slide2', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'slidetitle2', 'std' => '', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'slidedesc2', 'std' => '', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'slideurl2', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Slider Image 3', 'options_framework_theme'), 'desc' => __('Third Slide', 'options_framework_theme'), 'id' => 'slide3', 'class' => '', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'slidetitle3', 'std' => '', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'slidedesc3', 'std' => '', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'slideurl3', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Slider Image 4', 'options_framework_theme'), 'desc' => __('Fourth Slide', 'options_framework_theme'), 'id' => 'slide4', 'class' => '', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'slidetitle4', 'std' => '', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'slidedesc4', 'std' => '', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'slideurl4', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Slider Image 5', 'options_framework_theme'), 'desc' => __('Fifth Slide', 'options_framework_theme'), 'id' => 'slide5', 'class' => '', 'type' => 'upload'); $options[] = array( 'desc' => __('Title', 'options_framework_theme'), 'id' => 'slidetitle5', 'std' => '', 'type' => 'text'); $options[] = array( 'desc' => __('Description or Tagline', 'options_framework_theme'), 'id' => 'slidedesc5', 'std' => '', 'type' => 'textarea'); $options[] = array( 'desc' => __('Url', 'options_framework_theme'), 'id' => 'slideurl5', 'std' => '', 'type' => 'text'); $options[] = array( "name" => __('Social', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Facebook', 'isis'), "desc" => "Your Facebook url", "id" => "fbsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('Twitter', 'isis'), "desc" => "Your Twitter url", "id" => "ttsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('Google Plus', 'isis'), "desc" => "Your Google Plus url", "id" => "gpsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('Youtube', 'isis'), "desc" => "Your Youtube url", "id" => "ytbsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('Pinterest', 'isis'), "desc" => "Your Pinterest url", "id" => "pinsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('vimeo', 'isis'), "desc" => "Your vimeo url", "id" => "vimsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('LinkedIn', 'isis'), "desc" => "Your LinkedIn url", "id" => "linsoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('flickr', 'isis'), "desc" => "Your flickr url", "id" => "flisoc_text", "std" => "#", "type" => "text"); $options[] = array( "name" => __('Rss', 'isis'), "desc" => "Your RSS url", "id" => "rsssoc_text", "std" => "#", "type" => "text"); //misceleneous $options[] = array( "name" => __('Miscelleneous', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Right Sidebar', 'isis'), "desc" => "Remove Right sidebar from all the pages and make the site full width.", "id" => "nosidebar_checkbox", "std" => "0", "type" => "checkbox"); $options[] = array( "name" => __('Post Author Name', 'isis'), "desc" => "Hide Post Author Name", "id" => "dissauth_checkbox", "std" => "0", "type" => "checkbox"); $options[] = array( "name" => __('Category & Tags', 'isis'), "desc" => "Hide Post Categories and Tags", "id" => "disscats_checkbox", "std" => "0", "type" => "checkbox"); $options[] = array( "name" => __("below Wellcome tex Ad(728*90) & (970*90)", "isis"), "desc" => "Place here your ad code. Displayed in below Wellcome tex center,More ad spots available in PRO version !! ", "id" => "isis_well_ad", "std" => "", "type" => "textarea"); $options[] = array( "name" => __('Documentation', 'isis'), "type" => "heading"); $options[] = array( "name" => __('Our Client', 'isis'), 'desc' => __('About the theme

Isis is a Simple, Clean and Responsive Retina Ready WordPress Theme which adapts automatically to your tablets and mobile devices. theme with 2 home page layouts,10 social icons,4 widget ,Slider,3 page templates – Full width page, 4 google fonts, font-awesome service icon,Upload logo option,The theme is translation ready and fully translated into all language. Isis is suitable for any types of website – corporate, portfolio, business, blog.



For Documentation Download This PDF.

This Theme is designed and devloped by Imon Themes

', 'isis'), 'type' => 'info' ); return $options; }