'', 'image' => '', 'repeat' => 'repeat', 'position' => 'top center', 'attachment'=>'scroll' ); $bread_type = array( 'brimage' => __('Image', 'invert'), 'brcolor' => __('Color', 'invert') ); // pagination $test_pagiarray = array( 1 => __('Yes', 'invert'), 0 => __('No', 'invert') ); //breadcumhide_array $breadcumhide_array = array( 'true' => __('Enable', 'invert'), 'false' => __('Disable', 'invert') ); // 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 tags into an array $options_tags = array(); $options_tags_obj = get_tags(); foreach ( $options_tags_obj as $tag ) { $options_tags[$tag->term_id] = $tag->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; } // set pages $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() . '/images/'; $options = array(); //General Settings $options[] = array( 'name' => __('General Settings', 'invert'), 'type' => 'heading'); $options[] = array( 'name' => __('Theme Color:', 'invert'), 'desc' => __('Choose theme color.', 'invert'), 'id' => $invert_shortname.'_colorpicker', 'std' => '#D83B2D', 'type' => 'color' ); $options[] = array( 'name' => __('Custom Logo :', 'invert'), 'desc' => __('Choose your own logo for your site. Size: Width 120px and Height 40px.', 'invert'), 'id' => $invert_shortname.'_logo_img', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Logo Alt Text :', 'invert'), 'desc' => __('Enter alternate text for logo.', 'invert'), 'id' => $invert_shortname.'_logo_alt', 'std' => '', 'type' => 'text'); $options[] = array( 'name' => __('Custom favicon :', 'invert'), 'desc' => __('Choose a custom favicon for your site. Size: Width:16px and Height:16px.', 'invert'), 'id' => $invert_shortname.'_favicon', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Header Background Color:', 'invert'), 'desc' => __('Choose header background color.', 'invert'), 'id' => $invert_shortname.'_headercolorpicker', 'std' => '#ffffff', 'type' => 'color' ); $options[] = array( 'name' => __('Navigation Font Color:', 'invert'), 'desc' => __('Choose navigation font color.', 'invert'), 'id' => $invert_shortname.'_navfontcolorpicker', 'std' => '#333333', 'type' => 'color' ); $options[] = array( 'name' => __('Custom Pagination:', 'invert'), 'desc' => __('Choose enable to show custom pagination on blog page.', 'invert'), 'id' => $invert_shortname.'_show_pagination', 'std' => 'yes', 'type' => 'select', 'class' => 'small', //mini, tiny, small 'options' => $test_pagiarray); //Bg style $options[] = array( 'name' => __('Custom Background:', 'invert'), 'desc' => __('Change the background CSS.', 'invert'), 'id' => $invert_shortname.'_bg_style', 'std' => $background_style, 'type' => 'background' ); //Breadcrumb $options[] = array( 'name' => __('Breadcrumb Settings', 'invert'), 'type' => 'heading'); $options[] = array( 'name' => __('Breadcrumb Enable/Disable:', 'invert'), 'desc' => __('Radio select with default options "Enable".', 'invert'), 'id' => $invert_shortname.'_hide_bread', 'std' => 'true', 'type' => 'radio', 'options' => $breadcumhide_array); $options[] = array( 'name' => __('Breadcrumb Background Type', 'invert'), 'desc' => __('Default ( image ).', 'invert'), 'id' => $invert_shortname.'_bread_stype', 'std' => 'brimage', 'type' => 'radio', 'options' => $bread_type); $options[] = array( 'name' => __('Choose Page Title & Breadcrumb Background Color', 'invert'), 'desc' => __('No color selected by default.', 'invert'), 'id' => $invert_shortname.'_bread_color', 'std' => '#F2F2F2', 'type' => 'color', 'class'=>'hidden' ); $options[] = array( 'name' => __('Upload Page Title & Breadcrumb Background Image (size: 1600px width and 450px height)', 'invert'), 'desc' => __('This creates a full size uploader that previews the image.', 'invert'), 'id' => $invert_shortname.'_bread_image', 'std' => $imagepath.'danbo_green.jpg', 'type' => 'upload', 'class'=>'hidden'); $options[] = array( 'name' => __('Choose Page Title & Breadcrumb Color', 'invert'), 'desc' => __('No color selected by default.', 'invert'), 'id' => $invert_shortname.'_bread_title_color', 'std' => '#222222', 'type' => 'color' ); //Blog $options[] = array( 'name' => __('Blog Page Title', 'invert'), 'type' => 'heading'); //Blog page Title $options[] = array( 'name' => __('Blog page Title:', 'invert'), 'desc' => __('Enter blog page title.', 'invert'), 'id' => $invert_shortname.'_blogpage_heading', 'std' => 'Blog', 'type' => 'text'); //Front Page Options $options[] = array( 'name' => __('Home Featured Image', 'invert'), 'type' => 'heading'); $options[] = array( 'name' => __('Home page Image:', 'invert'), 'desc' => __('Choose image for home page. Size: Width 1583px and Height 716px.', 'invert'), 'id' => $invert_shortname.'_frontslider_stype', 'std' => $imagepath.'invert.jpg', 'type' => 'upload'); //call-to-action-block $options[] = array( 'name' => __('Home Featured Box', 'invert'), 'type' => 'heading'); //Featured Box 1 $options[] = array( 'name' => __('First Featured Box Heading:', 'invert'), 'desc' => __('Enter first featured box heading.', 'invert'), 'id' => $invert_shortname.'_fb1_first_part_heading', 'std' => 'Business Strategy', 'type' => 'text'); $options[] = array( 'name' => __('First Featured Box Image:', 'invert'), 'desc' => __('Choose image for first featured box. Size: Width 150px and Height 150px.', 'invert'), 'id' => $invert_shortname.'_fb1_first_part_image', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('First Featured Box Content:', 'invert'), 'desc' => __('Enter content for first featured box.','invert'), 'id' => $invert_shortname.'_fb1_first_part_content', 'std' => ' Get focused from your target consumers and increase your business with Web portal Design and Development. ', 'type' => 'textarea'); $options[] = array( 'name' => __('First Featured Box Link:', 'invert'), 'desc' => __('Enter link for first featured box.', 'invert'), 'id' => $invert_shortname.'_fb1_first_part_link', 'std' => '#', 'type' => 'text'); //Featured Box 2 $options[] = array( 'name' => __('Second Featured Box Heading:', 'invert'), 'desc' => __('Enter second featured box heading.', 'invert'), 'id' => $invert_shortname.'_fb2_second_part_heading', 'std' => 'Quality Products', 'type' => 'text'); $options[] = array( 'name' => __('Second Featured Box Image:', 'invert'), 'desc' => __('Choose image for second featured box. Size: Width 150px and Height 150px.', 'invert'), 'id' => $invert_shortname.'_fb2_second_part_image', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Second Featured Box Content:', 'invert'), 'desc' => __('Enter content for second featured box.','invert'), 'id' => $invert_shortname.'_fb2_second_part_content', 'std' => ' Products with the ultimate features and functionality that provide the complete satisfaction to the clients.', 'type' => 'textarea'); $options[] = array( 'name' => __('Second Featured Box Link:', 'invert'), 'desc' => __('Enter link for second featured box.', 'invert'), 'id' => $invert_shortname.'_fb2_second_part_link', 'std' => '#', 'type' => 'text'); //Featured Box 3 $options[] = array( 'name' => __('Third Featured Box Heading:', 'invert'), 'desc' => __('Enter third featured box heading.', 'invert'), 'id' => $invert_shortname.'_fb3_third_part_heading', 'std' => 'Best Business Plans', 'type' => 'text'); $options[] = array( 'name' => __('Third Featured Box Image', 'invert'), 'desc' => __('Choose image for third featured box. Size: Width 150px and Height 150px.', 'invert'), 'id' => $invert_shortname.'_fb3_third_part_image', 'std' => '', 'type' => 'upload'); $options[] = array( 'name' => __('Third Featured Box Content:', 'invert'), 'desc' => __('Enter content for third featured box.','invert'), 'id' => $invert_shortname.'_fb3_third_part_content', 'std' => ' Based on the client requirement, different business plans suits and fulfill your business and cost requirement.', 'type' => 'textarea'); $options[] = array( 'name' => __('Third Featured Box Link:', 'invert'), 'desc' => __('Enter link for third featured box.', 'invert'), 'id' => $invert_shortname.'_fb3_third_part_link', 'std' => '#', 'type' => 'text'); //call-to-action-block $options[] = array( 'name' => __('Home Call to Action', 'invert'), 'type' => 'heading'); $options[] = array( 'name' => __('Call to Action Box Heading:', 'invert'), 'desc' => __('Enter Call to Action Box Heading.', 'invert'), 'id' => $invert_shortname.'_catoac_heading', 'std' => 'Join The Ultimate And Irreplaceable Experience Now.', 'type' => 'text'); $options[] = array( 'name' => __('Call to Action Box Content:', 'invert'), 'desc' => __('Enter Call to Action Box Content.','invert'), 'id' => $invert_shortname.'_catoac_content', 'std' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec consequat malesuada urna, non fringilla purus malesuada eget.', 'type' => 'textarea'); $options[] = array( 'name' => __('Call to Action Button Text:', 'invert'), 'desc' => __('Enter call to action button text.', 'invert'), 'id' => $invert_shortname.'_catoac_txt', 'std' => 'Sign-Up Now', 'type' => 'text'); $options[] = array( 'name' => __('Call to Action Button Link:', 'invert'), 'desc' => __('Enter call to action button Link.', 'invert'), 'id' => $invert_shortname.'_catoac_link', 'std' => '#', 'type' => 'text'); $options[] = array( 'name' => __('Home Parallax Section', 'invert'), 'type' => 'heading'); $options[] = array( 'name' => __('Upload Your Image for Parallax ', 'invert'), 'desc' => __('Choose image for front page slider. Size: Width 1600px and Height 800px.', 'invert'), 'id' => $invert_shortname.'_fullparallax_image', 'std' => $imagepath.'PArallax_Vimeo_bg.jpg', 'type' => 'upload'); $options[] = array( 'name' => __('Content Box with Parallax Effect Section:', 'invert'), 'desc' => __('Enter box content.','invert'), 'id' => $invert_shortname.'_para_content_left', 'std' => '